Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .release-manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"crates/rust-mcp-sdk": "0.2.2",
"crates/rust-mcp-macros": "0.2.0",
"crates/rust-mcp-sdk": "0.2.3",
"crates/rust-mcp-macros": "0.2.1",
"crates/rust-mcp-transport": "0.2.1",
"examples/hello-world-mcp-server": "0.1.7",
"examples/hello-world-mcp-server-core": "0.1.7",
"examples/simple-mcp-client": "0.1.7",
"examples/simple-mcp-client-core": "0.1.7"
"examples/hello-world-mcp-server": "0.1.8",
"examples/hello-world-mcp-server-core": "0.1.8",
"examples/simple-mcp-client": "0.1.8",
"examples/simple-mcp-client-core": "0.1.8"
}
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ members = [
# Workspace member crates
rust-mcp-transport = { version = "0.2.1", path = "crates/rust-mcp-transport" }
rust-mcp-sdk = { path = "crates/rust-mcp-sdk", default-features = false }
rust-mcp-macros = { version = "0.2.0", path = "crates/rust-mcp-macros" }
rust-mcp-macros = { version = "0.2.1", path = "crates/rust-mcp-macros" }

# External crates
rust-mcp-schema = { version = "0.4" }
Expand Down
7 changes: 7 additions & 0 deletions crates/rust-mcp-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [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)


### 🚀 Features

* 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))

## [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)


Expand Down
2 changes: 1 addition & 1 deletion crates/rust-mcp-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-mcp-macros"
version = "0.2.0"
version = "0.2.1"
authors = ["Ali Hashemi"]
categories = ["data-structures", "parser-implementations", "parsing"]
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."
Expand Down
7 changes: 7 additions & 0 deletions crates/rust-mcp-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [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)


### 🐛 Bug Fixes

* 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))

## [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)


Expand Down
2 changes: 1 addition & 1 deletion crates/rust-mcp-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-mcp-sdk"
version = "0.2.2"
version = "0.2.3"
authors = ["Ali Hashemi"]
categories = ["data-structures", "parser-implementations", "parsing"]
description = "An asynchronous SDK and framework for building MCP-Servers and MCP-Clients, leveraging the rust-mcp-schema for type safe MCP Schema Objects."
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-world-mcp-server-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hello-world-mcp-server-core"
version = "0.1.7"
version = "0.1.8"
edition = "2021"
publish = false
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-world-mcp-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hello-world-mcp-server"
version = "0.1.7"
version = "0.1.8"
edition = "2021"
publish = false
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-mcp-client-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simple-mcp-client-core"
version = "0.1.7"
version = "0.1.8"
edition = "2021"
publish = false
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-mcp-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simple-mcp-client"
version = "0.1.7"
version = "0.1.8"
edition = "2021"
publish = false
license = "MIT"
Expand Down