diff --git a/.release-manifest.json b/.release-manifest.json index 62be672..8aa1b80 100644 --- a/.release-manifest.json +++ b/.release-manifest.json @@ -1,13 +1,13 @@ { - "crates/rust-mcp-sdk": "0.4.0", + "crates/rust-mcp-sdk": "0.4.1", "crates/rust-mcp-macros": "0.4.0", - "crates/rust-mcp-transport": "0.3.2", - "examples/hello-world-mcp-server": "0.1.16", - "examples/hello-world-mcp-server-core": "0.1.7", - "examples/simple-mcp-client": "0.1.16", - "examples/simple-mcp-client-core": "0.1.16", - "examples/hello-world-server-core-sse": "0.1.7", - "examples/hello-world-server-sse": "0.1.16", - "examples/simple-mcp-client-core-sse": "0.1.7", - "examples/simple-mcp-client-sse": "0.1.7" + "crates/rust-mcp-transport": "0.3.3", + "examples/hello-world-mcp-server": "0.1.17", + "examples/hello-world-mcp-server-core": "0.1.8", + "examples/simple-mcp-client": "0.1.17", + "examples/simple-mcp-client-core": "0.1.17", + "examples/hello-world-server-core-sse": "0.1.8", + "examples/hello-world-server-sse": "0.1.17", + "examples/simple-mcp-client-core-sse": "0.1.8", + "examples/simple-mcp-client-sse": "0.1.8" } \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index e9451dd..c8eefd0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -677,7 +677,7 @@ checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3" [[package]] name = "hello-world-mcp-server" -version = "0.1.16" +version = "0.1.17" dependencies = [ "async-trait", "futures", @@ -691,7 +691,7 @@ dependencies = [ [[package]] name = "hello-world-mcp-server-core" -version = "0.1.7" +version = "0.1.8" dependencies = [ "async-trait", "futures", @@ -703,7 +703,7 @@ dependencies = [ [[package]] name = "hello-world-server-core-sse" -version = "0.1.7" +version = "0.1.8" dependencies = [ "async-trait", "futures", @@ -717,7 +717,7 @@ dependencies = [ [[package]] name = "hello-world-server-sse" -version = "0.1.16" +version = "0.1.17" dependencies = [ "async-trait", "futures", @@ -1634,7 +1634,7 @@ dependencies = [ [[package]] name = "rust-mcp-sdk" -version = "0.4.0" +version = "0.4.1" dependencies = [ "async-trait", "axum", @@ -1657,7 +1657,7 @@ dependencies = [ [[package]] name = "rust-mcp-transport" -version = "0.3.2" +version = "0.3.3" dependencies = [ "async-trait", "bytes", @@ -1896,7 +1896,7 @@ dependencies = [ [[package]] name = "simple-mcp-client" -version = "0.1.16" +version = "0.1.17" dependencies = [ "async-trait", "colored", @@ -1910,7 +1910,7 @@ dependencies = [ [[package]] name = "simple-mcp-client-core" -version = "0.1.16" +version = "0.1.17" dependencies = [ "async-trait", "colored", @@ -1924,7 +1924,7 @@ dependencies = [ [[package]] name = "simple-mcp-client-core-sse" -version = "0.1.7" +version = "0.1.8" dependencies = [ "async-trait", "colored", @@ -1940,7 +1940,7 @@ dependencies = [ [[package]] name = "simple-mcp-client-sse" -version = "0.1.7" +version = "0.1.8" dependencies = [ "async-trait", "colored", diff --git a/Cargo.toml b/Cargo.toml index 9eaa408..b9c6e48 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ members = [ [workspace.dependencies] # Workspace member crates -rust-mcp-transport = { version = "0.3.2", path = "crates/rust-mcp-transport", default-features = false } +rust-mcp-transport = { version = "0.3.3", path = "crates/rust-mcp-transport", default-features = false } rust-mcp-sdk = { path = "crates/rust-mcp-sdk", default-features = false } rust-mcp-macros = { version = "0.4.0", path = "crates/rust-mcp-macros" } diff --git a/crates/rust-mcp-sdk/CHANGELOG.md b/crates/rust-mcp-sdk/CHANGELOG.md index f08a098..54d19b3 100644 --- a/crates/rust-mcp-sdk/CHANGELOG.md +++ b/crates/rust-mcp-sdk/CHANGELOG.md @@ -1,5 +1,7 @@ # Changelog +## [0.4.1](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.4.0...rust-mcp-sdk-v0.4.1) (2025-05-28) + ## [0.4.0](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.3.3...rust-mcp-sdk-v0.4.0) (2025-05-28) diff --git a/crates/rust-mcp-sdk/Cargo.toml b/crates/rust-mcp-sdk/Cargo.toml index 86bf204..e0b1ed6 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.4.0" +version = "0.4.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/crates/rust-mcp-transport/CHANGELOG.md b/crates/rust-mcp-transport/CHANGELOG.md index 556e7e3..f05098c 100644 --- a/crates/rust-mcp-transport/CHANGELOG.md +++ b/crates/rust-mcp-transport/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.3.3](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-transport-v0.3.2...rust-mcp-transport-v0.3.3) (2025-05-28) + + +### 🐛 Bug Fixes + +* Ensure custom headers are included in initial SSE connection to remote MCP Server ([#46](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/46)) ([166939e](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/166939ee47218675e3883cb86209cd95aa19957e)) + ## [0.3.2](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-transport-v0.3.1...rust-mcp-transport-v0.3.2) (2025-05-25) diff --git a/crates/rust-mcp-transport/Cargo.toml b/crates/rust-mcp-transport/Cargo.toml index 7fc7416..6d41e5a 100644 --- a/crates/rust-mcp-transport/Cargo.toml +++ b/crates/rust-mcp-transport/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-mcp-transport" -version = "0.3.2" +version = "0.3.3" authors = ["Ali Hashemi"] categories = ["data-structures"] description = "Transport implementations for the MCP (Model Context Protocol) within the rust-mcp-sdk ecosystem, enabling asynchronous data exchange and efficient message handling between MCP clients and servers." diff --git a/examples/hello-world-mcp-server-core/Cargo.toml b/examples/hello-world-mcp-server-core/Cargo.toml index e94492b..31fb13d 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.7" +version = "0.1.8" 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 f4eda12..4307b75 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.16" +version = "0.1.17" edition = "2021" publish = false license = "MIT" diff --git a/examples/hello-world-server-core-sse/Cargo.toml b/examples/hello-world-server-core-sse/Cargo.toml index ab0274d..18ba1af 100644 --- a/examples/hello-world-server-core-sse/Cargo.toml +++ b/examples/hello-world-server-core-sse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hello-world-server-core-sse" -version = "0.1.7" +version = "0.1.8" edition = "2021" publish = false license = "MIT" diff --git a/examples/hello-world-server-sse/Cargo.toml b/examples/hello-world-server-sse/Cargo.toml index 95d5e82..6fa54af 100644 --- a/examples/hello-world-server-sse/Cargo.toml +++ b/examples/hello-world-server-sse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hello-world-server-sse" -version = "0.1.16" +version = "0.1.17" 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 b516deb..60585c8 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.7" +version = "0.1.8" 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 63ce288..af5efc5 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.16" +version = "0.1.17" 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 6e4db27..3859041 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.7" +version = "0.1.8" edition = "2021" publish = false license = "MIT" diff --git a/examples/simple-mcp-client/Cargo.toml b/examples/simple-mcp-client/Cargo.toml index 5cc5988..6ec26ef 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.16" +version = "0.1.17" edition = "2021" publish = false license = "MIT"