Skip to content

Commit 2d368e6

Browse files
committed
chore: release main
1 parent 5bf54d6 commit 2d368e6

File tree

16 files changed

+51
-36
lines changed

16 files changed

+51
-36
lines changed

.release-manifest.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
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-
"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"
4+
"crates/rust-mcp-transport": "0.6.1",
5+
"examples/hello-world-mcp-server-stdio": "0.1.30",
6+
"examples/hello-world-mcp-server-stdio-core": "0.1.21",
7+
"examples/simple-mcp-client-stdio": "0.1.30",
8+
"examples/simple-mcp-client-stdio-core": "0.1.30",
9+
"examples/hello-world-server-streamable-http-core": "0.1.21",
10+
"examples/hello-world-server-streamable-http": "0.1.33",
11+
"examples/simple-mcp-client-sse-core": "0.1.21",
12+
"examples/simple-mcp-client-sse": "0.1.24",
13+
"examples/simple-mcp-client-streamable-http": "0.1.2",
14+
"examples/simple-mcp-client-streamable-http-core": "0.1.2"
1515
}

Cargo.lock

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

crates/rust-mcp-sdk/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
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+
311
## [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)
412

513

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"

examples/hello-world-mcp-server-stdio/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"
3-
version = "0.1.29"
3+
version = "0.1.30"
44
edition = "2021"
55
publish = false
66
license = "MIT"

examples/hello-world-server-streamable-http-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-server-streamable-http-core"
3-
version = "0.1.20"
3+
version = "0.1.21"
44
edition = "2021"
55
publish = false
66
license = "MIT"

examples/hello-world-server-streamable-http/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-server-streamable-http"
3-
version = "0.1.32"
3+
version = "0.1.33"
44
edition = "2021"
55
publish = false
66
license = "MIT"

0 commit comments

Comments
 (0)