Skip to content

Commit 9c4d936

Browse files
committed
chore: release main
1 parent fe467d3 commit 9c4d936

File tree

21 files changed

+79
-45
lines changed

21 files changed

+79
-45
lines changed

.release-manifest.json

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
{
2-
"crates/rust-mcp-sdk": "0.7.3",
3-
"crates/rust-mcp-macros": "0.5.2",
4-
"crates/rust-mcp-transport": "0.6.2",
5-
"crates/rust-mcp-extra": "0.1.3",
6-
"examples/hello-world-mcp-server-stdio": "0.1.32",
7-
"examples/hello-world-mcp-server-stdio-core": "0.1.23",
8-
"examples/simple-mcp-client-stdio": "0.1.32",
9-
"examples/simple-mcp-client-stdio-core": "0.1.32",
10-
"examples/hello-world-server-streamable-http-core": "0.1.23",
11-
"examples/hello-world-server-streamable-http": "0.1.35",
12-
"examples/simple-mcp-client-sse-core": "0.1.23",
13-
"examples/simple-mcp-client-sse": "0.1.26",
14-
"examples/simple-mcp-client-streamable-http": "0.1.4",
15-
"examples/simple-mcp-client-streamable-http-core": "0.1.4"
2+
"crates/rust-mcp-sdk": "0.7.4",
3+
"crates/rust-mcp-macros": "0.5.3",
4+
"crates/rust-mcp-transport": "0.6.3",
5+
"crates/rust-mcp-extra": "0.1.4",
6+
"examples/hello-world-mcp-server-stdio": "0.1.33",
7+
"examples/hello-world-mcp-server-stdio-core": "0.1.24",
8+
"examples/simple-mcp-client-stdio": "0.1.33",
9+
"examples/simple-mcp-client-stdio-core": "0.1.33",
10+
"examples/hello-world-server-streamable-http-core": "0.1.24",
11+
"examples/hello-world-server-streamable-http": "0.1.36",
12+
"examples/simple-mcp-client-sse-core": "0.1.24",
13+
"examples/simple-mcp-client-sse": "0.1.27",
14+
"examples/simple-mcp-client-streamable-http": "0.1.5",
15+
"examples/simple-mcp-client-streamable-http-core": "0.1.5",
16+
"examples/auth/server-oauth-remote": "0.1.35"
1617
}

Cargo.lock

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

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.4](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-extra-v0.1.3...rust-mcp-extra-v0.1.4) (2025-11-23)
4+
5+
6+
### 🚀 Features
7+
8+
* Add authentication flow support to MCP servers ([#119](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/119)) ([fe467d3](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/fe467d3661a60b6bb1f9d5b53697c1a94dc77c12))
9+
310
## [0.1.3](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-extra-v0.1.2...rust-mcp-extra-v0.1.3) (2025-11-08)
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.3"
3+
version = "0.1.4"
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."
@@ -13,7 +13,7 @@ rust-version = { workspace = true }
1313
exclude = ["assets/", "tests/"]
1414

1515
[dependencies]
16-
rust-mcp-sdk = { version = "0.7.3" , path = "../rust-mcp-sdk", default-features = false, features=["server","2025_06_18","auth","hyper-server","macros"] }
16+
rust-mcp-sdk = { version = "0.7.4" , path = "../rust-mcp-sdk", default-features = false, features=["server","2025_06_18","auth","hyper-server","macros"] }
1717
base64 = {workspace = true, optional=true}
1818
url= {workspace = true, optional=true}
1919
nanoid = {version="0.4", optional=true}

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.3](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-macros-v0.5.2...rust-mcp-macros-v0.5.3) (2025-11-23)
4+
5+
6+
### 🚀 Features
7+
8+
* Add authentication flow support to MCP servers ([#119](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/119)) ([fe467d3](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/fe467d3661a60b6bb1f9d5b53697c1a94dc77c12))
9+
310
## [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)
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.2"
3+
version = "0.5.3"
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: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [0.7.4](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.7.3...rust-mcp-sdk-v0.7.4) (2025-11-23)
4+
5+
6+
### 🚀 Features
7+
8+
* Add authentication flow support to MCP servers ([#119](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/119)) ([fe467d3](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/fe467d3661a60b6bb1f9d5b53697c1a94dc77c12))
9+
10+
11+
### 🐛 Bug Fixes
12+
13+
* Issue 116 - custom_streamable_http_endpoint ([#117](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/117)) ([6f70e18](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/6f70e18233bee5b56cf32e3fd1932973e1d38c6f))
14+
315
## [0.7.3](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.7.2...rust-mcp-sdk-v0.7.3) (2025-11-08)
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.3"
3+
version = "0.7.4"
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.3](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-transport-v0.6.2...rust-mcp-transport-v0.6.3) (2025-11-23)
4+
5+
6+
### 🚀 Features
7+
8+
* Add authentication flow support to MCP servers ([#119](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/119)) ([fe467d3](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/fe467d3661a60b6bb1f9d5b53697c1a94dc77c12))
9+
310
## [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)
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.2"
3+
version = "0.6.3"
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."

0 commit comments

Comments
 (0)