Skip to content
Open
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
4 changes: 2 additions & 2 deletions .release-manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"crates/rust-mcp-sdk": "0.9.0",
"crates/rust-mcp-sdk": "0.9.1",
"crates/rust-mcp-macros": "0.9.0",
"crates/rust-mcp-transport": "0.9.0",
"crates/rust-mcp-extra": "0.2.4",
"crates/rust-mcp-extra": "0.2.5",
"examples/hello-world-mcp-server-stdio": "0.1.33",
"examples/hello-world-mcp-server-stdio-core": "0.1.24",
"examples/simple-mcp-client-stdio": "0.1.33",
Expand Down
4 changes: 2 additions & 2 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-extra/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-extra-v0.2.4...rust-mcp-extra-v0.2.5) (2026-05-24)


### 🚜 Code Refactoring

* Switch mcp http to framework-agnostic McpHttpError ([#144](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/144)) ([e0c44c0](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/e0c44c0e4f8aaed9bfc59b9274d11c346646a635))

## [0.2.4](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-extra-v0.2.3...rust-mcp-extra-v0.2.4) (2026-03-13)

## [0.2.3](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-extra-v0.2.2...rust-mcp-extra-v0.2.3) (2026-02-01)
Expand Down
4 changes: 2 additions & 2 deletions crates/rust-mcp-extra/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-mcp-extra"
version = "0.2.4"
version = "0.2.5"
authors = ["Ali Hashemi"]
categories = ["api-bindings", "development-tools", "asynchronous", "parsing"]
description = "A companion crate to rust-mcp-sdk offering extra implementations of core traits like SessionStore and EventStore, enabling integration with various database backends and third-party platforms such as AWS Lambda for serverless and cloud-native MCP applications."
Expand All @@ -13,7 +13,7 @@ rust-version = { workspace = true }
exclude = ["assets/", "tests/"]

[dependencies]
rust-mcp-sdk = { version = "0.9.0" , path = "../rust-mcp-sdk", default-features = false, features=["server","auth","hyper-server","macros"] }
rust-mcp-sdk = { version = "0.9.1" , path = "../rust-mcp-sdk", default-features = false, features=["server","auth","hyper-server","macros"] }
base64 = {workspace = true, optional=true}
url= {workspace = true, optional=true}
nanoid = {version="0.4", optional=true}
Expand Down
12 changes: 12 additions & 0 deletions crates/rust-mcp-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [0.9.1](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.9.0...rust-mcp-sdk-v0.9.1) (2026-05-24)


### 🚀 Features

* Introduce framework-agnostic McpHttpError type ([#143](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/143)) ([2e3c4ca](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/2e3c4ca25dc2c0eb1d21e7b1be3a2fee7edee8b3))


### 🚜 Code Refactoring

* Switch mcp http to framework-agnostic McpHttpError ([#144](https://github.com/rust-mcp-stack/rust-mcp-sdk/issues/144)) ([e0c44c0](https://github.com/rust-mcp-stack/rust-mcp-sdk/commit/e0c44c0e4f8aaed9bfc59b9274d11c346646a635))

## [0.9.0](https://github.com/rust-mcp-stack/rust-mcp-sdk/compare/rust-mcp-sdk-v0.8.3...rust-mcp-sdk-v0.9.0) (2026-03-13)


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.9.0"
version = "0.9.1"
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
Loading