Skip to content

Commit 5711808

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

File tree

15 files changed

+53
-31
lines changed

15 files changed

+53
-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.3",
3-
"crates/rust-mcp-macros": "0.3.0",
2+
"crates/rust-mcp-sdk": "0.4.0",
3+
"crates/rust-mcp-macros": "0.4.0",
44
"crates/rust-mcp-transport": "0.3.2",
5-
"examples/hello-world-mcp-server": "0.1.15",
6-
"examples/hello-world-mcp-server-core": "0.1.6",
7-
"examples/simple-mcp-client": "0.1.15",
8-
"examples/simple-mcp-client-core": "0.1.15",
9-
"examples/hello-world-server-core-sse": "0.1.6",
10-
"examples/hello-world-server-sse": "0.1.15",
11-
"examples/simple-mcp-client-core-sse": "0.1.6",
12-
"examples/simple-mcp-client-sse": "0.1.6"
5+
"examples/hello-world-mcp-server": "0.1.16",
6+
"examples/hello-world-mcp-server-core": "0.1.7",
7+
"examples/simple-mcp-client": "0.1.16",
8+
"examples/simple-mcp-client-core": "0.1.16",
9+
"examples/hello-world-server-core-sse": "0.1.7",
10+
"examples/hello-world-server-sse": "0.1.16",
11+
"examples/simple-mcp-client-core-sse": "0.1.7",
12+
"examples/simple-mcp-client-sse": "0.1.7"
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
@@ -18,7 +18,7 @@ members = [
1818
# Workspace member crates
1919
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 }
21-
rust-mcp-macros = { version = "0.3.0", path = "crates/rust-mcp-macros" }
21+
rust-mcp-macros = { version = "0.4.0", path = "crates/rust-mcp-macros" }
2222

2323
# External crates
2424
rust-mcp-schema = { version = "0.5" }

crates/rust-mcp-macros/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [0.4.0](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-macros-v0.3.0...rust-mcp-macros-v0.4.0) (2025-05-28)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* make rust-mcp-sdk the sole dependency ([#43](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/43))
9+
10+
### 🚀 Features
11+
12+
* Make rust-mcp-sdk the sole dependency ([#43](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/43)) ([d1973ca](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/d1973ca037c1c6367261bb48a9a4ec89c3a448ac))
13+
314
## [0.3.0](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-macros-v0.2.1...rust-mcp-macros-v0.3.0) (2025-05-23)
415

516

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

3+
## [0.4.0](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.3.3...rust-mcp-sdk-v0.4.0) (2025-05-28)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* make rust-mcp-sdk the sole dependency ([#43](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/43))
9+
10+
### 🚀 Features
11+
12+
* Make rust-mcp-sdk the sole dependency ([#43](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/43)) ([d1973ca](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/d1973ca037c1c6367261bb48a9a4ec89c3a448ac))
13+
314
## [0.3.3](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.3.2...rust-mcp-sdk-v0.3.3) (2025-05-25)
415

516

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

0 commit comments

Comments
 (0)