From 87377fb0f4b188c464837019ca442c846921f228 Mon Sep 17 00:00:00 2001 From: Ali Hashemi <14126952+hashemix@users.noreply.github.com> Date: Tue, 18 Mar 2025 19:14:20 -0300 Subject: [PATCH] chore(main): release 0.1.11 --- CHANGELOG.md | 14 ++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 6 +++--- 4 files changed, 19 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fbe84bb..c216489 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.1.11](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.1.10...v0.1.11) (2025-03-18) + + +### Features + +* add new utility functions for CallToolResultContentItem ([#46](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/46)) ([1fe212c](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/1fe212c38a37033180644d938f38e990126465ea)) +* add tool_name() method to CallToolRequest ([#52](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/52)) ([2489d90](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/2489d900acee25efdfbc21066110a59665ab2e7f)) +* implement default trait for eligible types ([#51](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/51)) ([92022da](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/92022da588dcaa882debeea1c9ca6c5012f5077f)) + + +### Bug Fixes + +* updated release action to keep the readme version updated ([#49](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/49)) ([e8b03cf](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/e8b03cfd8879074b8f0ce35860647782549c190b)) + ## [0.1.10](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.1.9...v0.1.10) (2025-03-08) diff --git a/Cargo.lock b/Cargo.lock index 80220f0..6259a10 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -156,7 +156,7 @@ dependencies = [ [[package]] name = "rust-mcp-schema" -version = "0.1.10" +version = "0.1.11" dependencies = [ "json5", "serde", diff --git a/Cargo.toml b/Cargo.toml index d14701e..b72e55f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-mcp-schema" -version = "0.1.10" +version = "0.1.11" 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 4d885b7..a35b160 100644 --- a/README.md +++ b/README.md @@ -79,21 +79,21 @@ Example: enable `draft` version of the shema: ```toml # Cargo.toml -rust-mcp-schema = { version: 0.1.7 , features=["draft"] } +rust-mcp-schema = { version: 0.1.11 , features=["draft"] } ``` Example: enable `latest` version of the shema: ```toml #Cargo.toml -rust-mcp-schema = { version: 0.1.7 , features=["latest"] } +rust-mcp-schema = { version: 0.1.11 , features=["latest"] } ``` Example: enable specific version of the shema (2024_11_05) : ```toml #Cargo.toml -rust-mcp-schema = { version: 0.1.7 , features=["2024_11_05"] } +rust-mcp-schema = { version: 0.1.11 , features=["2024_11_05"] } ```