diff --git a/CHANGELOG.md b/CHANGELOG.md index e213730..3408412 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.7.5](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.7.4...v0.7.5) (2025-10-03) + + +### Features + +* added method value validation and more strickt restriction on const values ([#91](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/91)) ([5b81b64](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/5b81b64cf06a12b2c2dd6bc57ccae21c630e2383)) +* **validation:** support validation for subtypes of `ServerRequest` enum. ([#81](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/81)) ([83ad262](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/83ad262d425d5b9de694a2e68385fa5b68c4f155)) + ## [0.7.4](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.7.3...v0.7.4) (2025-09-17) diff --git a/Cargo.lock b/Cargo.lock index b4d045d..8cbe525 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -149,7 +149,7 @@ dependencies = [ [[package]] name = "rust-mcp-schema" -version = "0.7.4" +version = "0.7.5" dependencies = [ "json5", "serde", diff --git a/Cargo.toml b/Cargo.toml index 2d6dd99..b5bbf50 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-mcp-schema" -version = "0.7.4" +version = "0.7.5" 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 9681d0f..b4f247f 100644 --- a/README.md +++ b/README.md @@ -92,14 +92,14 @@ Example: enable `2024_11_05` version of the schema: ```toml # Cargo.toml -rust-mcp-schema = { version: 0.7.4 , default-features = false, features=["2024_11_05"] } +rust-mcp-schema = { version: 0.7.5 , default-features = false, features=["2024_11_05"] } ``` Example: enable `draft`` version of the schema (2024_11_05) : ```toml #Cargo.toml -rust-mcp-schema = { version: 0.7.4 , default-features = false, features=["draft"] } +rust-mcp-schema = { version: 0.7.5 , default-features = false, features=["draft"] } ```