From f4f5ece0b2fef6d08a8044e71bd4da13452d2f16 Mon Sep 17 00:00:00 2001 From: Ali Hashemi <14126952+hashemix@users.noreply.github.com> Date: Sat, 5 Apr 2025 14:21:56 -0300 Subject: [PATCH] chore: release main --- .release-manifest.json | 12 ++++++------ Cargo.lock | 12 ++++++------ crates/rust-mcp-sdk/CHANGELOG.md | 7 +++++++ crates/rust-mcp-sdk/Cargo.toml | 2 +- crates/rust-mcp-transport/CHANGELOG.md | 7 +++++++ crates/rust-mcp-transport/Cargo.toml | 2 +- examples/hello-world-mcp-server-core/Cargo.toml | 2 +- examples/hello-world-mcp-server/Cargo.toml | 2 +- examples/simple-mcp-client-core/Cargo.toml | 2 +- examples/simple-mcp-client/Cargo.toml | 2 +- 10 files changed, 32 insertions(+), 18 deletions(-) diff --git a/.release-manifest.json b/.release-manifest.json index c1d20bf..faaa4a4 100644 --- a/.release-manifest.json +++ b/.release-manifest.json @@ -1,9 +1,9 @@ { - "crates/rust-mcp-sdk": "0.1.2", + "crates/rust-mcp-sdk": "0.1.3", "crates/rust-mcp-macros": "0.1.2", - "crates/rust-mcp-transport": "0.1.1", - "examples/hello-world-mcp-server": "0.1.3", - "examples/hello-world-mcp-server-core": "0.1.3", - "examples/simple-mcp-client": "0.1.3", - "examples/simple-mcp-client-core": "0.1.3" + "crates/rust-mcp-transport": "0.1.2", + "examples/hello-world-mcp-server": "0.1.4", + "examples/hello-world-mcp-server-core": "0.1.4", + "examples/simple-mcp-client": "0.1.4", + "examples/simple-mcp-client-core": "0.1.4" } \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 56e582f..39d4431 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -173,7 +173,7 @@ checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" [[package]] name = "hello-world-mcp-server" -version = "0.1.3" +version = "0.1.4" dependencies = [ "async-trait", "futures", @@ -188,7 +188,7 @@ dependencies = [ [[package]] name = "hello-world-mcp-server-core" -version = "0.1.3" +version = "0.1.4" dependencies = [ "async-trait", "futures", @@ -354,7 +354,7 @@ dependencies = [ [[package]] name = "rust-mcp-sdk" -version = "0.1.2" +version = "0.1.3" dependencies = [ "async-trait", "futures", @@ -369,7 +369,7 @@ dependencies = [ [[package]] name = "rust-mcp-transport" -version = "0.1.1" +version = "0.1.2" dependencies = [ "async-trait", "futures", @@ -441,7 +441,7 @@ dependencies = [ [[package]] name = "simple-mcp-client" -version = "0.1.3" +version = "0.1.4" dependencies = [ "async-trait", "colored", @@ -457,7 +457,7 @@ dependencies = [ [[package]] name = "simple-mcp-client-core" -version = "0.1.3" +version = "0.1.4" dependencies = [ "async-trait", "colored", diff --git a/crates/rust-mcp-sdk/CHANGELOG.md b/crates/rust-mcp-sdk/CHANGELOG.md index 68ce947..9056efc 100644 --- a/crates/rust-mcp-sdk/CHANGELOG.md +++ b/crates/rust-mcp-sdk/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [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) + + +### 🚀 Features + +* 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)) + ## [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) diff --git a/crates/rust-mcp-sdk/Cargo.toml b/crates/rust-mcp-sdk/Cargo.toml index 4e802d0..df1e5c2 100644 --- a/crates/rust-mcp-sdk/Cargo.toml +++ b/crates/rust-mcp-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-mcp-sdk" -version = "0.1.2" +version = "0.1.3" 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." diff --git a/crates/rust-mcp-transport/CHANGELOG.md b/crates/rust-mcp-transport/CHANGELOG.md index 10ac4e5..f3b0938 100644 --- a/crates/rust-mcp-transport/CHANGELOG.md +++ b/crates/rust-mcp-transport/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [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) + + +### 🚀 Features + +* 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)) + ## [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) diff --git a/crates/rust-mcp-transport/Cargo.toml b/crates/rust-mcp-transport/Cargo.toml index efc7fac..1574644 100644 --- a/crates/rust-mcp-transport/Cargo.toml +++ b/crates/rust-mcp-transport/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-mcp-transport" -version = "0.1.1" +version = "0.1.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." diff --git a/examples/hello-world-mcp-server-core/Cargo.toml b/examples/hello-world-mcp-server-core/Cargo.toml index b4ce973..b011973 100644 --- a/examples/hello-world-mcp-server-core/Cargo.toml +++ b/examples/hello-world-mcp-server-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hello-world-mcp-server-core" -version = "0.1.3" +version = "0.1.4" edition = "2021" publish = false license = "MIT" diff --git a/examples/hello-world-mcp-server/Cargo.toml b/examples/hello-world-mcp-server/Cargo.toml index 68c74b4..890ddd9 100644 --- a/examples/hello-world-mcp-server/Cargo.toml +++ b/examples/hello-world-mcp-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hello-world-mcp-server" -version = "0.1.3" +version = "0.1.4" edition = "2021" publish = false license = "MIT" diff --git a/examples/simple-mcp-client-core/Cargo.toml b/examples/simple-mcp-client-core/Cargo.toml index 2082117..dcf50d4 100644 --- a/examples/simple-mcp-client-core/Cargo.toml +++ b/examples/simple-mcp-client-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simple-mcp-client-core" -version = "0.1.3" +version = "0.1.4" edition = "2021" publish = false license = "MIT" diff --git a/examples/simple-mcp-client/Cargo.toml b/examples/simple-mcp-client/Cargo.toml index 400ff68..05b84d2 100644 --- a/examples/simple-mcp-client/Cargo.toml +++ b/examples/simple-mcp-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simple-mcp-client" -version = "0.1.3" +version = "0.1.4" edition = "2021" publish = false license = "MIT"