Skip to content

Commit efeef28

Browse files
authored
Merge pull request #79 from atesgoral/v0.2.0
v0.2.0
2 parents e2fe23b + d853cc9 commit efeef28

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.0] - 2025-07-15
11+
1012
### Added
1113

1214
- Custom methods support via `define_custom_method` (#75)

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,8 @@ This gem is published to [RubyGems.org](https://rubygems.org/gems/mcp)
588588
Releases are triggered by PRs to the `main` branch updating the version number in `lib/mcp/version.rb`.
589589

590590
1. **Update the version number** in `lib/mcp/version.rb`, following [semver](https://semver.org/)
591-
2. **Create A PR and get approval from a maintainer**
592-
3. **Merge your PR to the main branch** - This will automatically trigger the release workflow via GitHub Actions
591+
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
592+
1. **Create a PR and get approval from a maintainer**
593+
1. **Merge your PR to the main branch** - This will automatically trigger the release workflow via GitHub Actions
593594

594595
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.

lib/mcp/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module MCP
4-
VERSION = "0.1.0"
4+
VERSION = "0.2.0"
55
end

0 commit comments

Comments
 (0)