diff --git a/CHANGELOG.md b/CHANGELOG.md index f885d20..75be8b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.6.0](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.5.2...v0.6.0) (2025年06月17日) + + +### ⚠ BREAKING CHANGES + +* add support for multiple active schema versions with versioned module access ([#73](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/73)) + +### Features + +* add support for multiple active schema versions with versioned module access ([#73](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/73)) ([2570c2b](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/2570c2ba4c5f0f166b5d41158cbb2769a3fe399b)) + ## [0.5.2](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.5.1...v0.5.2) (2025年05月28日) diff --git a/Cargo.lock b/Cargo.lock index 932e189..1c074a4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -156,7 +156,7 @@ dependencies = [ [[package]] name = "rust-mcp-schema" -version = "0.5.2" +version = "0.6.0" dependencies = [ "json5", "serde", diff --git a/Cargo.toml b/Cargo.toml index 78f4c40..0856fb5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-mcp-schema" -version = "0.5.2" +version = "0.6.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 68e3910..0ddd011 100644 --- a/README.md +++ b/README.md @@ -91,14 +91,14 @@ Example: enable `2024_11_05` version of the shema: ```toml # Cargo.toml -rust-mcp-schema = { version: 0.5.2 , default-features = false, features=["2024_11_05"] } +rust-mcp-schema = { version: 0.6.0 , default-features = false, features=["2024_11_05"] } ``` Example: enable `draft`` version of the shema (2024_11_05) : ```toml #Cargo.toml -rust-mcp-schema = { version: 0.5.2 , default-features = false, features=["draft"] } +rust-mcp-schema = { version: 0.6.0 , default-features = false, features=["draft"] } ```