Skip to content

Commit 375d096

Browse files
chore: release main (#25)
* chore: release main * chore: update Cargo.toml for release --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent b919fba commit 375d096

File tree

11 files changed

+33
-19
lines changed

11 files changed

+33
-19
lines changed

.release-manifest.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"crates/rust-mcp-sdk": "0.2.2",
3-
"crates/rust-mcp-macros": "0.2.0",
2+
"crates/rust-mcp-sdk": "0.2.3",
3+
"crates/rust-mcp-macros": "0.2.1",
44
"crates/rust-mcp-transport": "0.2.1",
5-
"examples/hello-world-mcp-server": "0.1.7",
6-
"examples/hello-world-mcp-server-core": "0.1.7",
7-
"examples/simple-mcp-client": "0.1.7",
8-
"examples/simple-mcp-client-core": "0.1.7"
5+
"examples/hello-world-mcp-server": "0.1.8",
6+
"examples/hello-world-mcp-server-core": "0.1.8",
7+
"examples/simple-mcp-client": "0.1.8",
8+
"examples/simple-mcp-client-core": "0.1.8"
99
}

Cargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ members = [
1414
# Workspace member crates
1515
rust-mcp-transport = { version = "0.2.1", path = "crates/rust-mcp-transport" }
1616
rust-mcp-sdk = { path = "crates/rust-mcp-sdk", default-features = false }
17-
rust-mcp-macros = { version = "0.2.0", path = "crates/rust-mcp-macros" }
17+
rust-mcp-macros = { version = "0.2.1", path = "crates/rust-mcp-macros" }
1818

1919
# External crates
2020
rust-mcp-schema = { version = "0.4" }

crates/rust-mcp-macros/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.2.1](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-macros-v0.2.0...rust-mcp-macros-v0.2.1) (2025-05-01)
4+
5+
6+
### 🚀 Features
7+
8+
* Concat support for mcp_tool macro ([#23](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/23)) ([f8bb8f2](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/f8bb8f2563cb0f1c8c693aa7ff400bf137da09d8))
9+
310
## [0.2.0](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-macros-v0.1.2...rust-mcp-macros-v0.2.0) (2025-04-16)
411

512

crates/rust-mcp-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-mcp-macros"
3-
version = "0.2.0"
3+
version = "0.2.1"
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

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.2.3](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.2.2...rust-mcp-sdk-v0.2.3) (2025-05-01)
4+
5+
6+
### 🐛 Bug Fixes
7+
8+
* Remove unnecessary error wrapper ([#24](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/24)) ([b919fba](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/b919fbabd143125df35486f9fd0d5af0c156a2d8))
9+
310
## [0.2.2](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.2.1...rust-mcp-sdk-v0.2.2) (2025-04-26)
411

512

crates/rust-mcp-sdk/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-mcp-sdk"
3-
version = "0.2.2"
3+
version = "0.2.3"
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

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

examples/hello-world-mcp-server/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hello-world-mcp-server"
3-
version = "0.1.7"
3+
version = "0.1.8"
44
edition = "2021"
55
publish = false
66
license = "MIT"

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "simple-mcp-client-core"
3-
version = "0.1.7"
3+
version = "0.1.8"
44
edition = "2021"
55
publish = false
66
license = "MIT"

examples/simple-mcp-client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "simple-mcp-client"
3-
version = "0.1.7"
3+
version = "0.1.8"
44
edition = "2021"
55
publish = false
66
license = "MIT"

0 commit comments

Comments
 (0)