Skip to content

Commit e00913a

Browse files
authored
chore: release main (#11)
1 parent a948bbd commit e00913a

File tree

10 files changed

+32
-18
lines changed

10 files changed

+32
-18
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.1.2",
2+
"crates/rust-mcp-sdk": "0.1.3",
33
"crates/rust-mcp-macros": "0.1.2",
4-
"crates/rust-mcp-transport": "0.1.1",
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"
4+
"crates/rust-mcp-transport": "0.1.2",
5+
"examples/hello-world-mcp-server": "0.1.4",
6+
"examples/hello-world-mcp-server-core": "0.1.4",
7+
"examples/simple-mcp-client": "0.1.4",
8+
"examples/simple-mcp-client-core": "0.1.4"
99
}

Cargo.lock

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

crates/rust-mcp-sdk/CHANGELOG.md

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

3+
## [0.1.3](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.1.2...rust-mcp-sdk-v0.1.3) (2025-04-05)
4+
5+
6+
### 🚀 Features
7+
8+
* Update to latest version of rust-mcp-schema ([#9](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/9)) ([05f4729](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/05f47296e7ef5eff93c5c4e7370a2d1c055328b5))
9+
310
## [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)
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.1.2"
3+
version = "0.1.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."

crates/rust-mcp-transport/CHANGELOG.md

+7
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-transport-v0.1.1...rust-mcp-transport-v0.1.2) (2025-04-05)
4+
5+
6+
### 🚀 Features
7+
8+
* Update to latest version of rust-mcp-schema ([#9](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/9)) ([05f4729](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/05f47296e7ef5eff93c5c4e7370a2d1c055328b5))
9+
310
## [0.1.1](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-transport-v0.1.0...rust-mcp-transport-v0.1.1) (2025-03-29)
411

512

crates/rust-mcp-transport/Cargo.toml

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

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

0 commit comments

Comments
 (0)