Skip to content

Commit 7083e54

Browse files
chore: release main (#100)
* chore: release main * chore: update Cargo.toml for release --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 54b662c commit 7083e54

File tree

19 files changed

+83
-41
lines changed

19 files changed

+83
-41
lines changed

.release-manifest.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
2-
"crates/rust-mcp-sdk": "0.6.3",
3-
"crates/rust-mcp-macros": "0.5.1",
4-
"crates/rust-mcp-transport": "0.5.0",
5-
"examples/hello-world-mcp-server-stdio": "0.1.28",
6-
"examples/hello-world-mcp-server-stdio-core": "0.1.19",
7-
"examples/simple-mcp-client-stdio": "0.1.28",
8-
"examples/simple-mcp-client-stdio-core": "0.1.28",
9-
"examples/hello-world-server-streamable-http-core": "0.1.19",
10-
"examples/hello-world-server-streamable-http": "0.1.28",
11-
"examples/simple-mcp-client-sse-core": "0.1.19",
12-
"examples/simple-mcp-client-sse": "0.1.19",
13-
"examples/simple-mcp-client-streamable-http": "0.1.0",
14-
"examples/simple-mcp-client-streamable-http-core": "0.1.0"
2+
"crates/rust-mcp-sdk": "0.7.0",
3+
"crates/rust-mcp-macros": "0.5.2",
4+
"crates/rust-mcp-transport": "0.6.0",
5+
"examples/hello-world-mcp-server-stdio": "0.1.29",
6+
"examples/hello-world-mcp-server-stdio-core": "0.1.20",
7+
"examples/simple-mcp-client-stdio": "0.1.29",
8+
"examples/simple-mcp-client-stdio-core": "0.1.29",
9+
"examples/hello-world-server-streamable-http-core": "0.1.20",
10+
"examples/hello-world-server-streamable-http": "0.1.32",
11+
"examples/simple-mcp-client-sse-core": "0.1.20",
12+
"examples/simple-mcp-client-sse": "0.1.23",
13+
"examples/simple-mcp-client-streamable-http": "0.1.1",
14+
"examples/simple-mcp-client-streamable-http-core": "0.1.1"
1515
}

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ members = [
1919

2020
[workspace.dependencies]
2121
# Workspace member crates
22-
rust-mcp-transport = { version = "0.5.1", path = "crates/rust-mcp-transport", default-features = false }
22+
rust-mcp-transport = { version = "0.6.0", path = "crates/rust-mcp-transport", default-features = false }
2323
rust-mcp-sdk = { path = "crates/rust-mcp-sdk", default-features = false }
24-
rust-mcp-macros = { version = "0.5.1", path = "crates/rust-mcp-macros", default-features = false }
24+
rust-mcp-macros = { version = "0.5.2", path = "crates/rust-mcp-macros", default-features = false }
2525

2626
# External crates
2727
rust-mcp-schema = { version = "0.7", default-features = false }

crates/rust-mcp-macros/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.5.2](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-macros-v0.5.1...rust-mcp-macros-v0.5.2) (2025-09-19)
4+
5+
6+
### 🚀 Features
7+
8+
* Add elicitation macros and add elicit_input() method ([#99](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/99)) ([3ab5fe7](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/3ab5fe73aaa10de2b5b23caee357ac15b37c845f))
9+
310
## [0.5.1](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-macros-v0.5.0...rust-mcp-macros-v0.5.1) (2025-08-12)
411

512

crates/rust-mcp-macros/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-macros"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
authors = ["Ali Hashemi"]
55
categories = ["data-structures", "parser-implementations", "parsing"]
66
description = "A procedural macro that derives the MCPToolSchema implementation for structs or enums, generating a tool_input_schema function used with rust_mcp_schema::Tool."

crates/rust-mcp-sdk/CHANGELOG.md

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

3+
## [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)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* add Streamable HTTP Client , multiple refactoring and improvements ([#98](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/98))
9+
* update ServerHandler and ServerHandlerCore traits ([#96](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/96))
10+
11+
### 🚀 Features
12+
13+
* Add elicitation macros and add elicit_input() method ([#99](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/99)) ([3ab5fe7](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/3ab5fe73aaa10de2b5b23caee357ac15b37c845f))
14+
* Add Streamable HTTP Client , multiple refactoring and improvements ([#98](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/98)) ([abb0c36](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/abb0c36126b0a397bc20a1de36c5a5a80924a01e))
15+
* Add tls-no-provider feature ([#97](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/97)) ([5dacceb](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/5dacceb0c2d18b8334744a13d438c6916bb7244c))
16+
* Event store support for resumability ([#101](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/101)) ([08742bb](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/08742bb9636f81ee79eda4edc192b3b8ed4c7287))
17+
* Update ServerHandler and ServerHandlerCore traits ([#96](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/96)) ([a2d6d23](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/a2d6d23ab59fbc34d04526e2606f747f93a8468c))
18+
319
## [0.6.3](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.6.2...rust-mcp-sdk-v0.6.3) (2025-08-31)
420

521
## [0.6.2](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.6.1...rust-mcp-sdk-v0.6.2) (2025-08-30)

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.6.3"
3+
version = "0.7.0"
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: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## [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)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* add Streamable HTTP Client , multiple refactoring and improvements ([#98](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/98))
9+
* update ServerHandler and ServerHandlerCore traits ([#96](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/96))
10+
11+
### 🚀 Features
12+
13+
* Add Streamable HTTP Client , multiple refactoring and improvements ([#98](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/98)) ([abb0c36](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/abb0c36126b0a397bc20a1de36c5a5a80924a01e))
14+
* Event store support for resumability ([#101](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/101)) ([08742bb](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/08742bb9636f81ee79eda4edc192b3b8ed4c7287))
15+
* Update ServerHandler and ServerHandlerCore traits ([#96](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/96)) ([a2d6d23](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/a2d6d23ab59fbc34d04526e2606f747f93a8468c))
16+
17+
18+
### 🐛 Bug Fixes
19+
20+
* Correct pending_requests instance ([#94](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/94)) ([9d8c1fb](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/9d8c1fbdf3ddb7c67ce1fb7dcb8e50b8ba2e1202))
21+
322
## [0.5.1](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-transport-v0.5.0...rust-mcp-transport-v0.5.1) (2025-08-31)
423

524

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.5.1"
3+
version = "0.6.0"
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.19"
3+
version = "0.1.20"
44
edition = "2021"
55
publish = false
66
license = "MIT"

0 commit comments

Comments
 (0)