Skip to content

Commit 8a65918

Browse files
committed
chore: release main
1 parent 0118c12 commit 8a65918

File tree

10 files changed

+37
-18
lines changed

10 files changed

+37
-18
lines changed

.release-manifest.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"crates/rust-mcp-sdk": "0.1.1",
3-
"crates/rust-mcp-macros": "0.1.1",
2+
"crates/rust-mcp-sdk": "0.1.2",
3+
"crates/rust-mcp-macros": "0.1.2",
44
"crates/rust-mcp-transport": "0.1.1",
5-
"examples/hello-world-mcp-server": "0.1.2",
6-
"examples/hello-world-mcp-server-core": "0.1.2",
7-
"examples/simple-mcp-client": "0.1.2",
8-
"examples/simple-mcp-client-core": "0.1.2"
5+
"examples/hello-world-mcp-server": "0.1.3",
6+
"examples/hello-world-mcp-server-core": "0.1.3",
7+
"examples/simple-mcp-client": "0.1.3",
8+
"examples/simple-mcp-client-core": "0.1.3"
99
}

Cargo.lock

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

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.1.2](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-macros-v0.1.1...rust-mcp-macros-v0.1.2) (2025-03-30)
4+
5+
6+
### 🚀 Features
7+
8+
* Re-export transport and macros for seamless user experience ([#4](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/4)) ([ff9e3af](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/ff9e3af0e43a6e915f968445b1fbdb54a5069a8b))
9+
310
## [0.1.1](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-macros-v0.1.0...rust-mcp-macros-v0.1.1) (2025-03-29)
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.1.1"
3+
version = "0.1.2"
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.1.2](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.1.1...rust-mcp-sdk-v0.1.2) (2025-03-30)
4+
5+
6+
### 🚀 Features
7+
8+
* Re-export transport and macros for seamless user experience ([#4](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/4)) ([ff9e3af](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/ff9e3af0e43a6e915f968445b1fbdb54a5069a8b))
9+
10+
11+
### 📚 Documentation
12+
13+
* Add step by step guide to the project to help getting started quickly ([#6](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/6)) ([571f36a](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/571f36a452164bea24065eddb8d8591f665f2d80))
14+
315
## [0.1.1](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.1.0...rust-mcp-sdk-v0.1.1) (2025-03-29)
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.1.1"
3+
version = "0.1.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.2"
3+
version = "0.1.3"
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.2"
3+
version = "0.1.3"
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.2"
3+
version = "0.1.3"
44
edition = "2021"
55
publish = false
66
license = "MIT"

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

0 commit comments

Comments
 (0)