Skip to content

Commit aacdbfe

Browse files
authored
chore: release main (#81)
1 parent 6995d25 commit aacdbfe

File tree

12 files changed

+40
-27
lines changed

12 files changed

+40
-27
lines changed

.release-manifest.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"crates/rust-mcp-sdk": "0.5.1",
2+
"crates/rust-mcp-sdk": "0.5.2",
33
"crates/rust-mcp-macros": "0.5.1",
44
"crates/rust-mcp-transport": "0.4.1",
5-
"examples/hello-world-mcp-server": "0.1.25",
6-
"examples/hello-world-mcp-server-core": "0.1.16",
7-
"examples/simple-mcp-client": "0.1.25",
8-
"examples/simple-mcp-client-core": "0.1.25",
9-
"examples/hello-world-server-core-streamable-http": "0.1.16",
10-
"examples/hello-world-server-streamable-http": "0.1.25",
11-
"examples/simple-mcp-client-core-sse": "0.1.16",
12-
"examples/simple-mcp-client-sse": "0.1.16"
5+
"examples/hello-world-mcp-server": "0.1.26",
6+
"examples/hello-world-mcp-server-core": "0.1.17",
7+
"examples/simple-mcp-client": "0.1.26",
8+
"examples/simple-mcp-client-core": "0.1.26",
9+
"examples/hello-world-server-core-streamable-http": "0.1.17",
10+
"examples/hello-world-server-streamable-http": "0.1.26",
11+
"examples/simple-mcp-client-core-sse": "0.1.17",
12+
"examples/simple-mcp-client-sse": "0.1.17"
1313
}

Cargo.lock

Lines changed: 9 additions & 9 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: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [0.5.2](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.5.1...rust-mcp-sdk-v0.5.2) (2025-08-16)
4+
5+
6+
### 🚀 Features
7+
8+
* Integrate list root and client info into hyper runtime ([36dfa4c](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/36dfa4cdc821e958ffe78b909ed28f5577d113c8))
9+
10+
11+
### 🐛 Bug Fixes
12+
13+
* Abort keep-alive task when transport is removed ([#82](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/82)) ([1ca8e49](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/1ca8e49860e990c3562623e75dd723b0d1dc8256))
14+
* Ensure server-initiated requests include a valid request_id ([#80](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/80)) ([5f9a966](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/5f9a966bb523bf61daefcff209199bc774fa5ed6))
15+
316
## [0.5.1](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.5.0...rust-mcp-sdk-v0.5.1) (2025-08-12)
417

518

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.5.1"
3+
version = "0.5.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."

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

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

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

examples/simple-mcp-client-core-sse/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "simple-mcp-client-core-sse"
3-
version = "0.1.16"
3+
version = "0.1.17"
44
edition = "2021"
55
publish = false
66
license = "MIT"

examples/simple-mcp-client-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 = "simple-mcp-client-core"
3-
version = "0.1.25"
3+
version = "0.1.26"
44
edition = "2021"
55
publish = false
66
license = "MIT"

0 commit comments

Comments
 (0)