From 4de1f8737858ef2764124b62a89b5ce0344d52c3 Mon Sep 17 00:00:00 2001 From: Ali Hashemi <14126952+hashemix@users.noreply.github.com> Date: Thu, 28 Aug 2025 06:39:46 -0300 Subject: [PATCH] chore: release main --- .release-manifest.json | 18 +++++++++--------- Cargo.lock | 18 +++++++++--------- crates/rust-mcp-sdk/CHANGELOG.md | 7 +++++++ crates/rust-mcp-sdk/Cargo.toml | 2 +- .../hello-world-mcp-server-core/Cargo.toml | 2 +- examples/hello-world-mcp-server/Cargo.toml | 2 +- .../Cargo.toml | 2 +- .../Cargo.toml | 2 +- examples/simple-mcp-client-core-sse/Cargo.toml | 2 +- examples/simple-mcp-client-core/Cargo.toml | 2 +- examples/simple-mcp-client-sse/Cargo.toml | 2 +- examples/simple-mcp-client/Cargo.toml | 2 +- 12 files changed, 34 insertions(+), 27 deletions(-) diff --git a/.release-manifest.json b/.release-manifest.json index 67502c7..6bac6a9 100644 --- a/.release-manifest.json +++ b/.release-manifest.json @@ -1,13 +1,13 @@ { - "crates/rust-mcp-sdk": "0.6.0", + "crates/rust-mcp-sdk": "0.6.1", "crates/rust-mcp-macros": "0.5.1", "crates/rust-mcp-transport": "0.5.0", - "examples/hello-world-mcp-server": "0.1.28", - "examples/hello-world-mcp-server-core": "0.1.19", - "examples/simple-mcp-client": "0.1.28", - "examples/simple-mcp-client-core": "0.1.28", - "examples/hello-world-server-core-streamable-http": "0.1.19", - "examples/hello-world-server-streamable-http": "0.1.28", - "examples/simple-mcp-client-core-sse": "0.1.19", - "examples/simple-mcp-client-sse": "0.1.19" + "examples/hello-world-mcp-server": "0.1.29", + "examples/hello-world-mcp-server-core": "0.1.20", + "examples/simple-mcp-client": "0.1.29", + "examples/simple-mcp-client-core": "0.1.29", + "examples/hello-world-server-core-streamable-http": "0.1.20", + "examples/hello-world-server-streamable-http": "0.1.29", + "examples/simple-mcp-client-core-sse": "0.1.20", + "examples/simple-mcp-client-sse": "0.1.20" } diff --git a/Cargo.lock b/Cargo.lock index 7554175..061edf9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -688,7 +688,7 @@ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" [[package]] name = "hello-world-mcp-server" -version = "0.1.28" +version = "0.1.29" dependencies = [ "async-trait", "futures", @@ -702,7 +702,7 @@ dependencies = [ [[package]] name = "hello-world-mcp-server-core" -version = "0.1.19" +version = "0.1.20" dependencies = [ "async-trait", "futures", @@ -714,7 +714,7 @@ dependencies = [ [[package]] name = "hello-world-server-core-streamable-http" -version = "0.1.19" +version = "0.1.20" dependencies = [ "async-trait", "futures", @@ -728,7 +728,7 @@ dependencies = [ [[package]] name = "hello-world-server-streamable-http" -version = "0.1.28" +version = "0.1.29" dependencies = [ "async-trait", "futures", @@ -1701,7 +1701,7 @@ dependencies = [ [[package]] name = "rust-mcp-sdk" -version = "0.6.0" +version = "0.6.1" dependencies = [ "async-trait", "axum", @@ -1926,7 +1926,7 @@ dependencies = [ [[package]] name = "simple-mcp-client" -version = "0.1.28" +version = "0.1.29" dependencies = [ "async-trait", "colored", @@ -1940,7 +1940,7 @@ dependencies = [ [[package]] name = "simple-mcp-client-core" -version = "0.1.28" +version = "0.1.29" dependencies = [ "async-trait", "colored", @@ -1954,7 +1954,7 @@ dependencies = [ [[package]] name = "simple-mcp-client-core-sse" -version = "0.1.19" +version = "0.1.20" dependencies = [ "async-trait", "colored", @@ -1970,7 +1970,7 @@ dependencies = [ [[package]] name = "simple-mcp-client-sse" -version = "0.1.19" +version = "0.1.20" dependencies = [ "async-trait", "colored", diff --git a/crates/rust-mcp-sdk/CHANGELOG.md b/crates/rust-mcp-sdk/CHANGELOG.md index bd1c8a8..057dffd 100644 --- a/crates/rust-mcp-sdk/CHANGELOG.md +++ b/crates/rust-mcp-sdk/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.6.1](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.6.0...rust-mcp-sdk-v0.6.1) (2025-08-28) + + +### 🐛 Bug Fixes + +* Session ID access in handlers and add helper for listing active ([#90](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/90)) ([f2f0afb](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/f2f0afb542f6ff036a28cf01e102b27ce940665b)) + ## [0.6.0](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.5.3...rust-mcp-sdk-v0.6.0) (2025-08-19) diff --git a/crates/rust-mcp-sdk/Cargo.toml b/crates/rust-mcp-sdk/Cargo.toml index d0553c8..161d813 100644 --- a/crates/rust-mcp-sdk/Cargo.toml +++ b/crates/rust-mcp-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-mcp-sdk" -version = "0.6.0" +version = "0.6.1" authors = ["Ali Hashemi"] categories = ["data-structures", "parser-implementations", "parsing"] description = "An asynchronous SDK and framework for building MCP-Servers and MCP-Clients, leveraging the rust-mcp-schema for type safe MCP Schema Objects." diff --git a/examples/hello-world-mcp-server-core/Cargo.toml b/examples/hello-world-mcp-server-core/Cargo.toml index a725e37..c28b8c3 100644 --- a/examples/hello-world-mcp-server-core/Cargo.toml +++ b/examples/hello-world-mcp-server-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hello-world-mcp-server-core" -version = "0.1.19" +version = "0.1.20" edition = "2021" publish = false license = "MIT" diff --git a/examples/hello-world-mcp-server/Cargo.toml b/examples/hello-world-mcp-server/Cargo.toml index 80faa71..cd8f63d 100644 --- a/examples/hello-world-mcp-server/Cargo.toml +++ b/examples/hello-world-mcp-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hello-world-mcp-server" -version = "0.1.28" +version = "0.1.29" edition = "2021" publish = false license = "MIT" diff --git a/examples/hello-world-server-core-streamable-http/Cargo.toml b/examples/hello-world-server-core-streamable-http/Cargo.toml index 234e6fc..7ae24d4 100644 --- a/examples/hello-world-server-core-streamable-http/Cargo.toml +++ b/examples/hello-world-server-core-streamable-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hello-world-server-core-streamable-http" -version = "0.1.19" +version = "0.1.20" edition = "2021" publish = false license = "MIT" diff --git a/examples/hello-world-server-streamable-http/Cargo.toml b/examples/hello-world-server-streamable-http/Cargo.toml index 3a5ffd3..3e763c1 100644 --- a/examples/hello-world-server-streamable-http/Cargo.toml +++ b/examples/hello-world-server-streamable-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hello-world-server-streamable-http" -version = "0.1.28" +version = "0.1.29" edition = "2021" publish = false license = "MIT" diff --git a/examples/simple-mcp-client-core-sse/Cargo.toml b/examples/simple-mcp-client-core-sse/Cargo.toml index 52322a7..704ae28 100644 --- a/examples/simple-mcp-client-core-sse/Cargo.toml +++ b/examples/simple-mcp-client-core-sse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simple-mcp-client-core-sse" -version = "0.1.19" +version = "0.1.20" edition = "2021" publish = false license = "MIT" diff --git a/examples/simple-mcp-client-core/Cargo.toml b/examples/simple-mcp-client-core/Cargo.toml index f1b4709..84552a1 100644 --- a/examples/simple-mcp-client-core/Cargo.toml +++ b/examples/simple-mcp-client-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simple-mcp-client-core" -version = "0.1.28" +version = "0.1.29" edition = "2021" publish = false license = "MIT" diff --git a/examples/simple-mcp-client-sse/Cargo.toml b/examples/simple-mcp-client-sse/Cargo.toml index 1bde25c..9782db9 100644 --- a/examples/simple-mcp-client-sse/Cargo.toml +++ b/examples/simple-mcp-client-sse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simple-mcp-client-sse" -version = "0.1.19" +version = "0.1.20" edition = "2021" publish = false license = "MIT" diff --git a/examples/simple-mcp-client/Cargo.toml b/examples/simple-mcp-client/Cargo.toml index 5b81f02..bae4943 100644 --- a/examples/simple-mcp-client/Cargo.toml +++ b/examples/simple-mcp-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simple-mcp-client" -version = "0.1.28" +version = "0.1.29" edition = "2021" publish = false license = "MIT"