diff --git a/CHANGELOG.md b/CHANGELOG.md index 3408412..666caa6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.8.0](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.7.5...v0.8.0) (2025-12-01) + + +### ⚠ BREAKING CHANGES + +* support mcp protocol version 2025-11-25 ([#93](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/93)) + +### Features + +* support mcp protocol version 2025-11-25 ([#93](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/93)) ([6c7b555](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/6c7b5555e4823b8cfb98da39d6d07d71c741d599)) + ## [0.7.5](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.7.4...v0.7.5) (2025-10-03) diff --git a/Cargo.lock b/Cargo.lock index 8cbe525..35150c0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -149,7 +149,7 @@ dependencies = [ [[package]] name = "rust-mcp-schema" -version = "0.7.5" +version = "0.8.0" dependencies = [ "json5", "serde", diff --git a/Cargo.toml b/Cargo.toml index f6be0e0..e94bef6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-mcp-schema" -version = "0.7.5" +version = "0.8.0" authors = ["Ali Hashemi"] categories = ["data-structures", "parser-implementations", "parsing"] description = "Type-safe implementation of the Model Context Protocol in Rust, designed to reduce errors and accelerate development with powerful utilities." diff --git a/README.md b/README.md index 81f9781..d242653 100644 --- a/README.md +++ b/README.md @@ -99,14 +99,14 @@ Example: enable `2025-06-18` version of the schema: ```toml # Cargo.toml -rust-mcp-schema = { version: 0.7.5 , default-features = false, features=["2025_06_18"] } +rust-mcp-schema = { version: 0.8.0 , default-features = false, features=["2025_06_18"] } ``` Example: enable `draft`` version of the schema : ```toml #Cargo.toml -rust-mcp-schema = { version: 0.7.5 , default-features = false, features=["draft"] } +rust-mcp-schema = { version: 0.8.0 , default-features = false, features=["draft"] } ```