Skip to content

Commit 247679a

Browse files
committed
chore: release main
1 parent a2d6d23 commit 247679a

File tree

14 files changed

+53
-30
lines changed

14 files changed

+53
-30
lines changed

.release-manifest.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"crates/rust-mcp-sdk": "0.6.3",
2+
"crates/rust-mcp-sdk": "0.7.0",
33
"crates/rust-mcp-macros": "0.5.1",
4-
"crates/rust-mcp-transport": "0.5.1",
5-
"examples/hello-world-mcp-server": "0.1.31",
6-
"examples/hello-world-mcp-server-core": "0.1.22",
7-
"examples/simple-mcp-client": "0.1.31",
8-
"examples/simple-mcp-client-core": "0.1.31",
9-
"examples/hello-world-server-core-streamable-http": "0.1.22",
10-
"examples/hello-world-server-streamable-http": "0.1.31",
11-
"examples/simple-mcp-client-core-sse": "0.1.22",
12-
"examples/simple-mcp-client-sse": "0.1.22"
4+
"crates/rust-mcp-transport": "0.6.0",
5+
"examples/hello-world-mcp-server": "0.1.32",
6+
"examples/hello-world-mcp-server-core": "0.1.23",
7+
"examples/simple-mcp-client": "0.1.32",
8+
"examples/simple-mcp-client-core": "0.1.32",
9+
"examples/hello-world-server-core-streamable-http": "0.1.23",
10+
"examples/hello-world-server-streamable-http": "0.1.32",
11+
"examples/simple-mcp-client-core-sse": "0.1.23",
12+
"examples/simple-mcp-client-sse": "0.1.23"
1313
}

Cargo.lock

Lines changed: 10 additions & 10 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: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
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-17)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* update ServerHandler and ServerHandlerCore traits ([#96](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/96))
9+
10+
### 🚀 Features
11+
12+
* 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))
13+
* 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))
14+
315
## [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)
416

517
## [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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [0.6.0](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-transport-v0.5.1...rust-mcp-transport-v0.6.0) (2025-09-17)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* update ServerHandler and ServerHandlerCore traits ([#96](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/96))
9+
10+
### 🚀 Features
11+
12+
* 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))
13+
314
## [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)
415

516

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-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.22"
3+
version = "0.1.23"
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.31"
3+
version = "0.1.32"
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.22"
3+
version = "0.1.23"
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.31"
3+
version = "0.1.32"
44
edition = "2021"
55
publish = false
66
license = "MIT"

0 commit comments

Comments
 (0)