Skip to content

chore: release main #33

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions .release-manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"crates/rust-mcp-sdk": "0.2.4",
"crates/rust-mcp-sdk": "0.2.5",
"crates/rust-mcp-macros": "0.2.1",
"crates/rust-mcp-transport": "0.2.1",
"examples/hello-world-mcp-server": "0.1.9",
"examples/hello-world-mcp-server-core": "0.1.9",
"examples/simple-mcp-client": "0.1.9",
"examples/simple-mcp-client-core": "0.1.9"
"crates/rust-mcp-transport": "0.2.2",
"examples/hello-world-mcp-server": "0.1.10",
"examples/hello-world-mcp-server-core": "0.1.1",
"examples/simple-mcp-client": "0.1.10",
"examples/simple-mcp-client-core": "0.1.10",
"examples/hello-world-server-core-sse": "0.1.1",
"examples/hello-world-server-sse": "0.1.10",
"examples/simple-mcp-client-core-sse": "0.1.1",
"examples/simple-mcp-client-sse": "0.1.1"
}
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ members = [

[workspace.dependencies]
# Workspace member crates
rust-mcp-transport = { version = "0.2.1", path = "crates/rust-mcp-transport" }
rust-mcp-transport = { version = "0.2.2", path = "crates/rust-mcp-transport" }
rust-mcp-sdk = { path = "crates/rust-mcp-sdk", default-features = false }
rust-mcp-macros = { version = "0.2.1", path = "crates/rust-mcp-macros" }

Expand Down
7 changes: 7 additions & 0 deletions crates/rust-mcp-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.2.5](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.2.4...rust-mcp-sdk-v0.2.5) (2025-05-20)


### 🚀 Features

* Add sse transport support ([#32](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/32)) ([1cf1877](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/1cf187757810e142e97216476ca73ecba020c320))

## [0.2.4](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.2.3...rust-mcp-sdk-v0.2.4) (2025-05-01)


Expand Down
2 changes: 1 addition & 1 deletion crates/rust-mcp-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-mcp-sdk"
version = "0.2.4"
version = "0.2.5"
authors = ["Ali Hashemi"]
categories = ["data-structures", "parser-implementations", "parsing"]
description = "An asynchronous SDK and framework for building MCP-Servers and MCP-Clients, leveraging the rust-mcp-schema for type safe MCP Schema Objects."
Expand Down
7 changes: 7 additions & 0 deletions crates/rust-mcp-transport/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.2.2](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-transport-v0.2.1...rust-mcp-transport-v0.2.2) (2025-05-20)


### 🚀 Features

* Add sse transport support ([#32](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/32)) ([1cf1877](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/1cf187757810e142e97216476ca73ecba020c320))

## [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)


Expand Down
2 changes: 1 addition & 1 deletion crates/rust-mcp-transport/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-mcp-transport"
version = "0.2.1"
version = "0.2.2"
authors = ["Ali Hashemi"]
categories = ["data-structures"]
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."
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-world-mcp-server-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hello-world-mcp-server-core"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
publish = false
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-world-mcp-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hello-world-mcp-server"
version = "0.1.9"
version = "0.1.10"
edition = "2021"
publish = false
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-world-server-core-sse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hello-world-server-core-sse"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
publish = false
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-world-server-sse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hello-world-server-sse"
version = "0.1.9"
version = "0.1.10"
edition = "2021"
publish = false
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-mcp-client-core-sse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simple-mcp-client-core-sse"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
publish = false
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-mcp-client-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simple-mcp-client-core"
version = "0.1.9"
version = "0.1.10"
edition = "2021"
publish = false
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-mcp-client-sse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simple-mcp-client-sse"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
publish = false
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-mcp-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simple-mcp-client"
version = "0.1.9"
version = "0.1.10"
edition = "2021"
publish = false
license = "MIT"
Expand Down