From e197e36267d30d13e2e3e0be425a4957a13349ed Mon Sep 17 00:00:00 2001 From: Ali Hashemi <14126952+hashemix@users.noreply.github.com> Date: 2025年3月29日 21:22:50 -0300 Subject: [PATCH] chore(main): release 0.2.2 --- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 6 +++--- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c157eb..4b56fb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.2](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.2.1...v0.2.2) (2025年03月30日) + + +### Bug Fixes + +* update readme, announce rust-mcp-sdk ([#59](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/59)) ([c5c6808](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/c5c6808dd6cff083b435647da2c05306b757b6c7)) + ## [0.2.1](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.2.0...v0.2.1) (2025年03月23日) diff --git a/Cargo.lock b/Cargo.lock index 6aa6a67..c167d9a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -156,7 +156,7 @@ dependencies = [ [[package]] name = "rust-mcp-schema" -version = "0.2.1" +version = "0.2.2" dependencies = [ "json5", "serde", diff --git a/Cargo.toml b/Cargo.toml index 3404754..491be6a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-mcp-schema" -version = "0.2.1" +version = "0.2.2" 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 c82f652..cf06297 100644 --- a/README.md +++ b/README.md @@ -86,21 +86,21 @@ Example: enable `draft` version of the shema: ```toml # Cargo.toml -rust-mcp-schema = { version: 0.2.1 , features=["draft"] } +rust-mcp-schema = { version: 0.2.2 , features=["draft"] } ``` Example: enable `latest` version of the shema: ```toml #Cargo.toml -rust-mcp-schema = { version: 0.2.1 , features=["latest"] } +rust-mcp-schema = { version: 0.2.2 , features=["latest"] } ``` Example: enable specific version of the shema (2024_11_05) : ```toml #Cargo.toml -rust-mcp-schema = { version: 0.2.1 , features=["2024_11_05"] } +rust-mcp-schema = { version: 0.2.2 , features=["2024_11_05"] } ```