From affe452ac7caf1cec83d7c229b55c0cf81f00fcf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2026 16:16:43 +0000 Subject: [PATCH 1/2] chore: release v0.18.0 --- Cargo.toml | 6 +++--- crates/rmcp-macros/CHANGELOG.md | 10 ++++++++++ crates/rmcp/CHANGELOG.md | 15 +++++++++++++++ 3 files changed, 28 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fae59e7c..3de4279b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,12 +4,12 @@ default-members = ["crates/rmcp", "crates/rmcp-macros"] resolver = "2" [workspace.dependencies] -rmcp = { version = "0.17.0", path = "./crates/rmcp" } -rmcp-macros = { version = "0.17.0", path = "./crates/rmcp-macros" } +rmcp = { version = "0.18.0", path = "./crates/rmcp" } +rmcp-macros = { version = "0.18.0", path = "./crates/rmcp-macros" } [workspace.package] edition = "2024" -version = "0.17.0" +version = "0.18.0" authors = ["4t145 "] license = "Apache-2.0" license-file = "LICENSE" diff --git a/crates/rmcp-macros/CHANGELOG.md b/crates/rmcp-macros/CHANGELOG.md index 7313439e..afb4f80b 100644 --- a/crates/rmcp-macros/CHANGELOG.md +++ b/crates/rmcp-macros/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/modelcontextprotocol/rust-sdk/compare/rmcp-macros-v0.17.0...rmcp-macros-v0.18.0) - 2026-03-03 + +### Added + +- docs update ([#718](https://github.com/modelcontextprotocol/rust-sdk/pull/718)) + +### Other + +- add #[non_exhaustive] and mutation methods to improve compatibility ([#715](https://github.com/modelcontextprotocol/rust-sdk/pull/715)) + ## [0.17.0](https://github.com/modelcontextprotocol/rust-sdk/compare/rmcp-macros-v0.16.0...rmcp-macros-v0.17.0) - 2026-02-27 ### Added diff --git a/crates/rmcp/CHANGELOG.md b/crates/rmcp/CHANGELOG.md index 0f4a3a40..ab741609 100644 --- a/crates/rmcp/CHANGELOG.md +++ b/crates/rmcp/CHANGELOG.md @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.0](https://github.com/modelcontextprotocol/rust-sdk/compare/rmcp-v0.17.0...rmcp-v0.18.0) - 2026-03-03 + +### Added + +- docs update ([#718](https://github.com/modelcontextprotocol/rust-sdk/pull/718)) +- *(auth)* [**breaking**] support returning extra fields from token exchange ([#700](https://github.com/modelcontextprotocol/rust-sdk/pull/700)) + +### Fixed + +- downgrade logging of message to `TRACE` to avoid spamming logs ([#699](https://github.com/modelcontextprotocol/rust-sdk/pull/699)) + +### Other + +- add #[non_exhaustive] and mutation methods to improve compatibility ([#715](https://github.com/modelcontextprotocol/rust-sdk/pull/715)) + ## [0.17.0](https://github.com/modelcontextprotocol/rust-sdk/compare/rmcp-v0.16.0...rmcp-v0.17.0) - 2026-02-27 ### Added From b358b2214b75774c6a30d0117970d10b0e367438 Mon Sep 17 00:00:00 2001 From: Jack Amadeo Date: Tue, 3 Mar 2026 11:19:41 -0500 Subject: [PATCH 2/2] chore: bump to 1.0.0-alpha --- Cargo.toml | 6 +++--- crates/rmcp-macros/CHANGELOG.md | 2 +- crates/rmcp/CHANGELOG.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3de4279b..60bb16fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,12 +4,12 @@ default-members = ["crates/rmcp", "crates/rmcp-macros"] resolver = "2" [workspace.dependencies] -rmcp = { version = "0.18.0", path = "./crates/rmcp" } -rmcp-macros = { version = "0.18.0", path = "./crates/rmcp-macros" } +rmcp = { version = "1.0.0-alpha", path = "./crates/rmcp" } +rmcp-macros = { version = "1.0.0-alpha", path = "./crates/rmcp-macros" } [workspace.package] edition = "2024" -version = "0.18.0" +version = "1.0.0-alpha" authors = ["4t145 "] license = "Apache-2.0" license-file = "LICENSE" diff --git a/crates/rmcp-macros/CHANGELOG.md b/crates/rmcp-macros/CHANGELOG.md index afb4f80b..546f8f24 100644 --- a/crates/rmcp-macros/CHANGELOG.md +++ b/crates/rmcp-macros/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.18.0](https://github.com/modelcontextprotocol/rust-sdk/compare/rmcp-macros-v0.17.0...rmcp-macros-v0.18.0) - 2026-03-03 +## [1.0.0-alpha](https://github.com/modelcontextprotocol/rust-sdk/compare/rmcp-macros-v0.17.0...rmcp-macros-v1.0.0-alpha) - 2026-03-03 ### Added diff --git a/crates/rmcp/CHANGELOG.md b/crates/rmcp/CHANGELOG.md index ab741609..3dea6f10 100644 --- a/crates/rmcp/CHANGELOG.md +++ b/crates/rmcp/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.18.0](https://github.com/modelcontextprotocol/rust-sdk/compare/rmcp-v0.17.0...rmcp-v0.18.0) - 2026-03-03 +## [1.0.0-alpha](https://github.com/modelcontextprotocol/rust-sdk/compare/rmcp-v0.17.0...rmcp-v1.0.0-alpha) - 2026-03-03 ### Added