Skip to content

chore: release v2.0.0#747

Open
github-actions[bot] wants to merge 1 commit intomainfrom
release-plz-2026-03-11T18-14-25Z
Open

chore: release v2.0.0#747
github-actions[bot] wants to merge 1 commit intomainfrom
release-plz-2026-03-11T18-14-25Z

Conversation

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented Mar 11, 2026

🤖 New release

  • rmcp-macros: 1.2.0 -> 2.0.0
  • rmcp: 1.2.0 -> 2.0.0 (⚠ API breaking changes)

rmcp breaking changes

--- failure auto_trait_impl_removed: auto trait no longer implemented ---

Description:
A public type has stopped implementing one or more auto traits. This can break downstream code that depends on the traits being implemented.
        ref: https://doc.rust-lang.org/reference/special-types-and-traits.html#auto-traits
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/auto_trait_impl_removed.ron

Failed in:
  type Router is no longer Send, in /tmp/.tmp1jxJU3/rust-sdk/crates/rmcp/src/handler/server/router.rs:16
  type Router is no longer Sync, in /tmp/.tmp1jxJU3/rust-sdk/crates/rmcp/src/handler/server/router.rs:16
  type PromptRoute is no longer Send, in /tmp/.tmp1jxJU3/rust-sdk/crates/rmcp/src/handler/server/router/prompt.rs:9
  type PromptRoute is no longer Sync, in /tmp/.tmp1jxJU3/rust-sdk/crates/rmcp/src/handler/server/router/prompt.rs:9
  type ToolRouter is no longer Send, in /tmp/.tmp1jxJU3/rust-sdk/crates/rmcp/src/handler/server/router/tool.rs:295
  type ToolRouter is no longer Sync, in /tmp/.tmp1jxJU3/rust-sdk/crates/rmcp/src/handler/server/router/tool.rs:295
  type ToolRouter is no longer Send, in /tmp/.tmp1jxJU3/rust-sdk/crates/rmcp/src/handler/server/router/tool.rs:295
  type ToolRouter is no longer Sync, in /tmp/.tmp1jxJU3/rust-sdk/crates/rmcp/src/handler/server/router/tool.rs:295
  type PromptRouter is no longer Send, in /tmp/.tmp1jxJU3/rust-sdk/crates/rmcp/src/handler/server/router/prompt.rs:106
  type PromptRouter is no longer Sync, in /tmp/.tmp1jxJU3/rust-sdk/crates/rmcp/src/handler/server/router/prompt.rs:106
  type ToolRoute is no longer Send, in /tmp/.tmp1jxJU3/rust-sdk/crates/rmcp/src/handler/server/router/tool.rs:139
  type ToolRoute is no longer Sync, in /tmp/.tmp1jxJU3/rust-sdk/crates/rmcp/src/handler/server/router/tool.rs:139
  type ToolRoute is no longer Send, in /tmp/.tmp1jxJU3/rust-sdk/crates/rmcp/src/handler/server/router/tool.rs:139
  type ToolRoute is no longer Sync, in /tmp/.tmp1jxJU3/rust-sdk/crates/rmcp/src/handler/server/router/tool.rs:139

--- failure module_missing: pub module removed or renamed ---

Description:
A publicly-visible module cannot be imported by its prior path. A `pub use` may have been removed, or the module may have been renamed, removed, or made non-public.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/module_missing.ron

Failed in:
  mod rmcp::transport::streamable_http_server::tower, previously in file /tmp/.tmp56J0pc/rmcp/src/transport/streamable_http_server/tower.rs:1

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/struct_missing.ron

Failed in:
  struct rmcp::transport::streamable_http_server::tower::StreamableHttpServerConfig, previously in file /tmp/.tmp56J0pc/rmcp/src/transport/streamable_http_server/tower.rs:33
  struct rmcp::transport::streamable_http_server::StreamableHttpServerConfig, previously in file /tmp/.tmp56J0pc/rmcp/src/transport/streamable_http_server/tower.rs:33
  struct rmcp::transport::StreamableHttpServerConfig, previously in file /tmp/.tmp56J0pc/rmcp/src/transport/streamable_http_server/tower.rs:33
  struct rmcp::transport::streamable_http_server::tower::StreamableHttpService, previously in file /tmp/.tmp56J0pc/rmcp/src/transport/streamable_http_server/tower.rs:188
  struct rmcp::transport::streamable_http_server::StreamableHttpService, previously in file /tmp/.tmp56J0pc/rmcp/src/transport/streamable_http_server/tower.rs:188
  struct rmcp::transport::StreamableHttpService, previously in file /tmp/.tmp56J0pc/rmcp/src/transport/streamable_http_server/tower.rs:188

--- failure trait_added_supertrait: non-sealed trait added new supertraits ---

Description:
A non-sealed trait added one or more supertraits, which breaks downstream implementations of the trait
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#generic-bounds-tighten
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.46.0/src/lints/trait_added_supertrait.ron

Failed in:
  trait rmcp::service::DynService gained MaybeSend in file /tmp/.tmp1jxJU3/rust-sdk/crates/rmcp/src/service.rs:204
  trait rmcp::service::Service gained MaybeSend in file /tmp/.tmp1jxJU3/rust-sdk/crates/rmcp/src/service.rs:135
  trait rmcp::Service gained MaybeSend in file /tmp/.tmp1jxJU3/rust-sdk/crates/rmcp/src/service.rs:135
  trait rmcp::handler::server::ServerHandler gained MaybeSend in file /tmp/.tmp1jxJU3/rust-sdk/crates/rmcp/src/handler/server.rs:169
  trait rmcp::ServerHandler gained MaybeSend in file /tmp/.tmp1jxJU3/rust-sdk/crates/rmcp/src/handler/server.rs:169
Changelog

rmcp-macros

2.0.0 - 2026-03-11

Added

  • add local feature for !Send tool handler support (#740)

Other

  • fix all clippy warnings across workspace (#746)

rmcp

2.0.0 - 2026-03-11

Added

  • add local feature for !Send tool handler support (#740)

Other

  • fix all clippy warnings across workspace (#746)


This PR was generated with release-plz.

@github-actions github-actions bot requested a review from a team as a code owner March 11, 2026 18:14
@github-actions github-actions bot changed the title chore: release v1.2.1 chore: release v2.0.0 Mar 11, 2026
@github-actions github-actions bot force-pushed the release-plz-2026-03-11T18-14-25Z branch from 825bbf7 to 034436f Compare March 11, 2026 21:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants