From d234d011e6592a8bc86b702216158c1b1ca0a0ef Mon Sep 17 00:00:00 2001 From: Ates Goral Date: Tue, 15 Jul 2025 15:40:15 -0400 Subject: [PATCH 1/3] Bump version --- lib/mcp/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mcp/version.rb b/lib/mcp/version.rb index dc54e240..55c18442 100644 --- a/lib/mcp/version.rb +++ b/lib/mcp/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module MCP - VERSION = "0.1.0" + VERSION = "0.2.0" end From bdd118a568f1d0ca2a6dc2348070378e015d09ae Mon Sep 17 00:00:00 2001 From: Ates Goral Date: Tue, 15 Jul 2025 15:40:22 -0400 Subject: [PATCH 2/3] Update release process fixup: Remove "the" --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 779d4399..4ffd492d 100644 --- a/README.md +++ b/README.md @@ -588,7 +588,8 @@ This gem is published to [RubyGems.org](https://rubygems.org/gems/mcp) Releases are triggered by PRs to the `main` branch updating the version number in `lib/mcp/version.rb`. 1. **Update the version number** in `lib/mcp/version.rb`, following [semver](https://semver.org/) -2. **Create A PR and get approval from a maintainer** -3. **Merge your PR to the main branch** - This will automatically trigger the release workflow via GitHub Actions +1. **Update CHANGELOG.md**, backfilling the changes since the last release if necessary, and adding a new section for the new version, clearing out the Unreleased section +1. **Create a PR and get approval from a maintainer** +1. **Merge your PR to the main branch** - This will automatically trigger the release workflow via GitHub Actions When changes are merged to the `main` branch, the GitHub Actions workflow (`.github/workflows/release.yml`) is triggered and the gem is published to RubyGems. From d853cc92d5bc3dafd11441ac717054c9aee18dab Mon Sep 17 00:00:00 2001 From: Ates Goral Date: Tue, 15 Jul 2025 15:43:11 -0400 Subject: [PATCH 3/3] Add new version to CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71a520f0..fc9f155d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0] - 2025-07-15 + ### Added - Custom methods support via `define_custom_method` (#75)