Skip to content

Commit 2d4906c

Browse files
chore: release main (#110)
* chore: release main * chore: update Cargo.toml for release --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 84a635e commit 2d4906c

File tree

19 files changed

+72
-41
lines changed

19 files changed

+72
-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.1",
2+
"crates/rust-mcp-sdk": "0.7.2",
33
"crates/rust-mcp-macros": "0.5.2",
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"
4+
"crates/rust-mcp-transport": "0.6.2",
5+
"crates/rust-mcp-extra": "0.1.2",
6+
"examples/hello-world-mcp-server-stdio": "0.1.31",
7+
"examples/hello-world-mcp-server-stdio-core": "0.1.22",
8+
"examples/simple-mcp-client-stdio": "0.1.31",
9+
"examples/simple-mcp-client-stdio-core": "0.1.31",
10+
"examples/hello-world-server-streamable-http-core": "0.1.22",
11+
"examples/hello-world-server-streamable-http": "0.1.34",
12+
"examples/simple-mcp-client-sse-core": "0.1.22",
13+
"examples/simple-mcp-client-sse": "0.1.25",
14+
"examples/simple-mcp-client-streamable-http": "0.1.3",
15+
"examples/simple-mcp-client-streamable-http-core": "0.1.3"
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.1", path = "crates/rust-mcp-transport", default-features = false }
23+
rust-mcp-transport = { version = "0.6.2", 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: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.1.2](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-extra-v0.1.1...rust-mcp-extra-v0.1.2) (2025-10-20)
4+
5+
6+
### 🚀 Features
7+
8+
* Add middleware support to mcp_http_handler ([#112](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/112)) ([18b1e6f](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/18b1e6f3e9671bfffa4bd59f64dc12fc2e44d818))
9+
310
## [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)
411

512

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.1"
3+
version = "0.1.2"
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.1" , path = "../rust-mcp-sdk", default-features = false, features=["server","2025_06_18"] }
15+
rust-mcp-sdk = { version = "0.7.2" , 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: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [0.7.2](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.7.1...rust-mcp-sdk-v0.7.2) (2025-10-20)
4+
5+
6+
### 🚀 Features
7+
8+
* Add middleware support to mcp_http_handler ([#112](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/112)) ([18b1e6f](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/18b1e6f3e9671bfffa4bd59f64dc12fc2e44d818))
9+
10+
11+
### 🚜 Code Refactoring
12+
13+
* Eventstore with better error handling and stability ([#109](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/109)) ([150e3a0](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/150e3a02ba593b2e41b16d2d621e770d292cfa23))
14+
315
## [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)
416

517

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

3+
## [0.6.2](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-transport-v0.6.1...rust-mcp-transport-v0.6.2) (2025-10-20)
4+
5+
6+
### 🐛 Bug Fixes
7+
8+
* Mcp client stderr handling ([#113](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/113)) ([84a635e](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/84a635ee445a08c08f4858d7663f2a26a0c79751))
9+
10+
11+
### 🚜 Code Refactoring
12+
13+
* Eventstore with better error handling and stability ([#109](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/109)) ([150e3a0](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/150e3a02ba593b2e41b16d2d621e770d292cfa23))
14+
315
## [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)
416

517

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.1"
3+
version = "0.6.2"
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.21"
3+
version = "0.1.22"
44
edition = "2021"
55
publish = false
66
license = "MIT"

0 commit comments

Comments
 (0)