diff --git a/CHANGELOG.md b/CHANGELOG.md index d118425..0c379a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.5.0](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.4.0...v0.5.0) (2025-05-22) + + +### ⚠ BREAKING CHANGES + +* update schema default version and latest draft changes ([#68](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/68)) + +### Features + +* update schema default version and latest draft changes ([#68](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/68)) ([279baf2](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/279baf2bb46b42f505ed1ac7e61ff7c50e8dcf5e)) + ## [0.4.0](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.3.0...v0.4.0) (2025-04-26) diff --git a/Cargo.lock b/Cargo.lock index 4fadc16..9ce653a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -156,7 +156,7 @@ dependencies = [ [[package]] name = "rust-mcp-schema" -version = "0.4.0" +version = "0.5.0" dependencies = [ "json5", "serde", diff --git a/Cargo.toml b/Cargo.toml index 5ba013a..1077460 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-mcp-schema" -version = "0.4.0" +version = "0.5.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 d8fe5eb..f97ca19 100644 --- a/README.md +++ b/README.md @@ -85,21 +85,21 @@ Example: enable `2024_11_05` version of the shema: ```toml # Cargo.toml -rust-mcp-schema = { version: 0.4.0 , features=["2024_11_05"] } +rust-mcp-schema = { version: 0.5.0 , features=["2024_11_05"] } ``` Example: enable `latest` version of the shema: ```toml #Cargo.toml -rust-mcp-schema = { version: 0.4.0 , features=["latest"] } +rust-mcp-schema = { version: 0.5.0 , features=["latest"] } ``` Example: enable `draft`` version of the shema (2024_11_05) : ```toml #Cargo.toml -rust-mcp-schema = { version: 0.4.0 , features=["draft"] } +rust-mcp-schema = { version: 0.5.0 , features=["draft"] } ```