Skip to content

Commit 200bb59

Browse files
chore: release main (#105)
* chore: release main * chore: update Cargo.toml for release * Update CHANGELOG.md --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent ba4fe72 commit 200bb59

File tree

19 files changed

+75
-41
lines changed

19 files changed

+75
-41
lines changed

.release-manifest.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
2-
"crates/rust-mcp-sdk": "0.7.0",
2+
"crates/rust-mcp-sdk": "0.7.1",
33
"crates/rust-mcp-macros": "0.5.2",
4-
"crates/rust-mcp-transport": "0.6.0",
5-
"crates/rust-mcp-extra": "0.1.0",
6-
"examples/hello-world-mcp-server-stdio": "0.1.29",
7-
"examples/hello-world-mcp-server-stdio-core": "0.1.20",
8-
"examples/simple-mcp-client-stdio": "0.1.29",
9-
"examples/simple-mcp-client-stdio-core": "0.1.29",
10-
"examples/hello-world-server-streamable-http-core": "0.1.20",
11-
"examples/hello-world-server-streamable-http": "0.1.32",
12-
"examples/simple-mcp-client-sse-core": "0.1.20",
13-
"examples/simple-mcp-client-sse": "0.1.23",
14-
"examples/simple-mcp-client-streamable-http": "0.1.1",
15-
"examples/simple-mcp-client-streamable-http-core": "0.1.1"
4+
"crates/rust-mcp-transport": "0.6.1",
5+
"crates/rust-mcp-extra": "0.1.1",
6+
"examples/hello-world-mcp-server-stdio": "0.1.30",
7+
"examples/hello-world-mcp-server-stdio-core": "0.1.21",
8+
"examples/simple-mcp-client-stdio": "0.1.30",
9+
"examples/simple-mcp-client-stdio-core": "0.1.30",
10+
"examples/hello-world-server-streamable-http-core": "0.1.21",
11+
"examples/hello-world-server-streamable-http": "0.1.33",
12+
"examples/simple-mcp-client-sse-core": "0.1.21",
13+
"examples/simple-mcp-client-sse": "0.1.24",
14+
"examples/simple-mcp-client-streamable-http": "0.1.2",
15+
"examples/simple-mcp-client-streamable-http-core": "0.1.2"
1616
}

Cargo.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ members = [
2020

2121
[workspace.dependencies]
2222
# Workspace member crates
23-
rust-mcp-transport = { version = "0.6.0", path = "crates/rust-mcp-transport", default-features = false }
23+
rust-mcp-transport = { version = "0.6.1", path = "crates/rust-mcp-transport", default-features = false }
2424
rust-mcp-sdk = { path = "crates/rust-mcp-sdk", default-features = false }
2525
rust-mcp-macros = { version = "0.5.2", path = "crates/rust-mcp-macros", default-features = false }
2626
rust-mcp-extra = { version="0.1.0", path = "crates/rust-mcp-extra", default-features = false }

crates/rust-mcp-extra/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
3+
## [0.1.1](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-extra-v0.1.0...rust-mcp-extra-v0.1.1) (2025-10-13)
4+
5+
6+
### 🚀 Features
7+
8+
* Initial release v0.1.0 ([4c08beb](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/4c08beb73b102c77e65b724b284008071b7f5ef4))
9+
* Introduce `rust-mcp-extra` crate for extended id, session, and event store support ([#108](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/108)) ([5fddd3c](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/5fddd3cee12d622c19c23a67d4f381475d914031))

crates/rust-mcp-extra/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-mcp-extra"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Ali Hashemi"]
55
categories = ["api-bindings", "development-tools", "asynchronous", "parsing"]
66
description = "A companion crate to rust-mcp-sdk offering extra implementations of core traits like SessionStore and EventStore, enabling integration with various database backends and third-party platforms such as AWS Lambda for serverless and cloud-native MCP applications."
@@ -12,7 +12,7 @@ edition = "2024"
1212
exclude = ["assets/", "tests/"]
1313

1414
[dependencies]
15-
rust-mcp-sdk = { version = "0.7" , path = "../rust-mcp-sdk", default-features = false, features=["server","2025_06_18"] }
15+
rust-mcp-sdk = { version = "0.7.1" , path = "../rust-mcp-sdk", default-features = false, features=["server","2025_06_18"] }
1616

1717
base64 = {workspace = true, optional=true}
1818
nanoid = {version="0.4", optional=true}

crates/rust-mcp-sdk/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## [0.7.1](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.7.0...rust-mcp-sdk-v0.7.1) (2025-10-13)
4+
5+
6+
### 🚀 Features
7+
8+
* Add server_supports_completion method ([#104](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/104)) ([6268726](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/62687262a30cce0928435c153b6016d56e85b8ee))
9+
* **server:** Decouple core logic from HTTP server for improved architecture ([#106](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/106)) ([d10488b](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/d10488bac739bf28b45d636129eb598d4dd87fd2))
10+
11+
12+
### ⚡ Performance Improvements
13+
14+
* Remove unnecessary mutex in the session store ([ea5d580](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/ea5d58013ac051f2bbe7e9f5b3a20a3220e66c9b))
15+
16+
17+
### 🚜 Code Refactoring
18+
19+
* Expose Store Traits and add ToMcpServerHandler for Improved Framework Flexibility ([#107](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/107)) ([5bf54d6](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/5bf54d6d442d6cb854242697fa50c29bca0b8483))
20+
321
## [0.7.0](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.6.3...rust-mcp-sdk-v0.7.0) (2025-09-19)
422

523

crates/rust-mcp-sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-mcp-sdk"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors = ["Ali Hashemi"]
55
categories = ["data-structures", "parser-implementations", "parsing"]
66
description = "An asynchronous SDK and framework for building MCP-Servers and MCP-Clients, leveraging the rust-mcp-schema for type safe MCP Schema Objects."

crates/rust-mcp-transport/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.6.1](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-transport-v0.6.0...rust-mcp-transport-v0.6.1) (2025-10-13)
4+
5+
6+
### 🚀 Features
7+
8+
* **server:** Decouple core logic from HTTP server for improved architecture ([#106](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/106)) ([d10488b](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/d10488bac739bf28b45d636129eb598d4dd87fd2))
9+
310
## [0.6.0](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-transport-v0.5.0...rust-mcp-transport-v0.6.0) (2025-09-19)
411

512

crates/rust-mcp-transport/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-mcp-transport"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
authors = ["Ali Hashemi"]
55
categories = ["data-structures"]
66
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."

examples/hello-world-mcp-server-stdio-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hello-world-mcp-server-stdio-core"
3-
version = "0.1.20"
3+
version = "0.1.21"
44
edition = "2021"
55
publish = false
66
license = "MIT"

0 commit comments

Comments
 (0)