Skip to content

Commit 5ebcec2

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

File tree

15 files changed

+45
-31
lines changed

15 files changed

+45
-31
lines changed

.release-manifest.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"crates/rust-mcp-sdk": "0.3.1",
2+
"crates/rust-mcp-sdk": "0.3.2",
33
"crates/rust-mcp-macros": "0.3.0",
4-
"crates/rust-mcp-transport": "0.3.1",
5-
"examples/hello-world-mcp-server": "0.1.13",
6-
"examples/hello-world-mcp-server-core": "0.1.4",
7-
"examples/simple-mcp-client": "0.1.13",
8-
"examples/simple-mcp-client-core": "0.1.13",
9-
"examples/hello-world-server-core-sse": "0.1.4",
10-
"examples/hello-world-server-sse": "0.1.13",
11-
"examples/simple-mcp-client-core-sse": "0.1.4",
12-
"examples/simple-mcp-client-sse": "0.1.4"
4+
"crates/rust-mcp-transport": "0.3.2",
5+
"examples/hello-world-mcp-server": "0.1.14",
6+
"examples/hello-world-mcp-server-core": "0.1.5",
7+
"examples/simple-mcp-client": "0.1.14",
8+
"examples/simple-mcp-client-core": "0.1.14",
9+
"examples/hello-world-server-core-sse": "0.1.5",
10+
"examples/hello-world-server-sse": "0.1.14",
11+
"examples/simple-mcp-client-core-sse": "0.1.5",
12+
"examples/simple-mcp-client-sse": "0.1.5"
1313
}

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ members = [
1616

1717
[workspace.dependencies]
1818
# Workspace member crates
19-
rust-mcp-transport = { version = "0.3.1", path = "crates/rust-mcp-transport", default-features = false }
19+
rust-mcp-transport = { version = "0.3.2", path = "crates/rust-mcp-transport", default-features = false }
2020
rust-mcp-sdk = { path = "crates/rust-mcp-sdk", default-features = false }
2121
rust-mcp-macros = { version = "0.3.0", path = "crates/rust-mcp-macros" }
2222

crates/rust-mcp-sdk/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.3.2](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.3.1...rust-mcp-sdk-v0.3.2) (2025-05-25)
4+
5+
6+
### 🚀 Features
7+
8+
* Improve build process and dependencies ([#38](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/38)) ([e88c4f1](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/e88c4f1c4c4743b13aedbf2a3d65fedb12942555))
9+
310
## [0.3.1](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.3.0...rust-mcp-sdk-v0.3.1) (2025-05-24)
411

512
## [0.3.0](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.2.6...rust-mcp-sdk-v0.3.0) (2025-05-23)

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.3.1"
3+
version = "0.3.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: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.3.2](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-transport-v0.3.1...rust-mcp-transport-v0.3.2) (2025-05-25)
4+
5+
6+
### 🚀 Features
7+
8+
* Improve build process and dependencies ([#38](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/38)) ([e88c4f1](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/e88c4f1c4c4743b13aedbf2a3d65fedb12942555))
9+
310
## [0.3.1](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-transport-v0.3.0...rust-mcp-transport-v0.3.1) (2025-05-24)
411

512

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.3.1"
3+
version = "0.3.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

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

examples/hello-world-server-core-sse/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-server-core-sse"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
edition = "2021"
55
publish = false
66
license = "MIT"

examples/hello-world-server-sse/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-server-sse"
3-
version = "0.1.13"
3+
version = "0.1.14"
44
edition = "2021"
55
publish = false
66
license = "MIT"

examples/simple-mcp-client-core-sse/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-sse"
3-
version = "0.1.4"
3+
version = "0.1.5"
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.13"
3+
version = "0.1.14"
44
edition = "2021"
55
publish = false
66
license = "MIT"

examples/simple-mcp-client-sse/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-sse"
3-
version = "0.1.4"
3+
version = "0.1.5"
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.13"
3+
version = "0.1.14"
44
edition = "2021"
55
publish = false
66
license = "MIT"

0 commit comments

Comments
 (0)