Skip to content

Commit 2cef46a

Browse files
committed
chore: release main
1 parent b7e3a98 commit 2cef46a

File tree

10 files changed

+42
-18
lines changed

10 files changed

+42
-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.2.1",
2+
"crates/rust-mcp-sdk": "0.2.2",
33
"crates/rust-mcp-macros": "0.2.0",
4-
"crates/rust-mcp-transport": "0.2.0",
5-
"examples/hello-world-mcp-server": "0.1.6",
6-
"examples/hello-world-mcp-server-core": "0.1.6",
7-
"examples/simple-mcp-client": "0.1.6",
8-
"examples/simple-mcp-client-core": "0.1.6"
4+
"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"
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-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.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)
4+
5+
6+
### 🚀 Features
7+
8+
* Upgrade to rust-mcp-schema v0.4.0 ([#21](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/21)) ([819d113](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/819d1135b469e4aa8e857c81e25c81c331084fb1))
9+
10+
11+
### 🐛 Bug Fixes
12+
13+
* Capture launch errors in client-runtime ([#19](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/19)) ([c0d05ab](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/c0d05ab73b1ac7edc7c410f2f14f0b86d4343c1d))
14+
315
## [0.2.1](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.2.0...rust-mcp-sdk-v0.2.1) (2025-04-20)
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.2.1"
3+
version = "0.2.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."

crates/rust-mcp-transport/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.2.1](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-transport-v0.2.0...rust-mcp-transport-v0.2.1) (2025-04-26)
4+
5+
6+
### 🚀 Features
7+
8+
* Upgrade to rust-mcp-schema v0.4.0 ([#21](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/21)) ([819d113](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/819d1135b469e4aa8e857c81e25c81c331084fb1))
9+
10+
11+
### 🐛 Bug Fixes
12+
13+
* Capture launch errors in client-runtime ([#19](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/19)) ([c0d05ab](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/c0d05ab73b1ac7edc7c410f2f14f0b86d4343c1d))
14+
315
## [0.2.0](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-transport-v0.1.2...rust-mcp-transport-v0.2.0) (2025-04-16)
416

517

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.2.0"
3+
version = "0.2.1"
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.6"
3+
version = "0.1.7"
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.6"
3+
version = "0.1.7"
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.6"
3+
version = "0.1.7"
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.6"
3+
version = "0.1.7"
44
edition = "2021"
55
publish = false
66
license = "MIT"

0 commit comments

Comments
 (0)