diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e5a18c..8ff0ec6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.7.1](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.7.0...v0.7.1) (2025-07-01) + + +### Features + +* implement new utility functions for CallToolResult and TextContent ([#79](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/79)) ([1c8aa34](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/1c8aa34e9e68f0d94c9ab017adcfd55f0e5ed081)) + ## [0.7.0](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.6.0...v0.7.0) (2025-06-28) diff --git a/Cargo.lock b/Cargo.lock index f12dd07..ea6b987 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -156,7 +156,7 @@ dependencies = [ [[package]] name = "rust-mcp-schema" -version = "0.7.0" +version = "0.7.1" dependencies = [ "json5", "serde", diff --git a/Cargo.toml b/Cargo.toml index 0ca1737..5bc6482 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-mcp-schema" -version = "0.7.0" +version = "0.7.1" 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 ee0f5f7..586f118 100644 --- a/README.md +++ b/README.md @@ -92,14 +92,14 @@ Example: enable `2024_11_05` version of the shema: ```toml # Cargo.toml -rust-mcp-schema = { version: 0.7.0 , default-features = false, features=["2024_11_05"] } +rust-mcp-schema = { version: 0.7.1 , 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.7.0 , default-features = false, features=["draft"] } +rust-mcp-schema = { version: 0.7.1 , default-features = false, features=["draft"] } ```