Skip to content
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
18 changes: 9 additions & 9 deletions .release-manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"crates/rust-mcp-sdk": "0.4.6",
"crates/rust-mcp-sdk": "0.4.7",
"crates/rust-mcp-macros": "0.4.2",
"crates/rust-mcp-transport": "0.3.6",
"examples/hello-world-mcp-server": "0.1.22",
"examples/hello-world-mcp-server-core": "0.1.13",
"examples/simple-mcp-client": "0.1.22",
"examples/simple-mcp-client-core": "0.1.22",
"examples/hello-world-server-core-sse": "0.1.13",
"examples/hello-world-server-sse": "0.1.22",
"examples/simple-mcp-client-core-sse": "0.1.13",
"examples/simple-mcp-client-sse": "0.1.13"
"examples/hello-world-mcp-server": "0.1.23",
"examples/hello-world-mcp-server-core": "0.1.14",
"examples/simple-mcp-client": "0.1.23",
"examples/simple-mcp-client-core": "0.1.23",
"examples/hello-world-server-core-sse": "0.1.14",
"examples/hello-world-server-sse": "0.1.23",
"examples/simple-mcp-client-core-sse": "0.1.14",
"examples/simple-mcp-client-sse": "0.1.14"
}
18 changes: 9 additions & 9 deletions Cargo.lock

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

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.4.7](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.4.6...rust-mcp-sdk-v0.4.7) (2025-06-29)


### 🚀 Features

* Make hyper optional ([#63](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/63)) ([8dd95a2](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/8dd95a2a112d6c661ddc3deede2dd606b4ff743b))

## [0.4.6](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.4.5...rust-mcp-sdk-v0.4.6) (2025-06-23)


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.4.6"
version = "0.4.7"
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
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.13"
version = "0.1.14"
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.22"
version = "0.1.23"
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.13"
version = "0.1.14"
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.22"
version = "0.1.23"
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.13"
version = "0.1.14"
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.22"
version = "0.1.23"
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.13"
version = "0.1.14"
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.22"
version = "0.1.23"
edition = "2021"
publish = false
license = "MIT"
Expand Down
Loading