From 5254f2d8459765f297d992424911910a369fa9de Mon Sep 17 00:00:00 2001 From: Ali Hashemi <14126952+hashemix@users.noreply.github.com> Date: 2025年6月28日 16:03:55 -0300 Subject: [PATCH] chore(main): release 0.7.0 --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 75be8b7..3e5a18c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.7.0](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.6.0...v0.7.0) (2025年06月28日) + + +### ⚠ BREAKING CHANGES + +* add support for MCP Schema Version 2025年06月18日 ([#77](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/77)) + +### Features + +* add support for MCP Schema Version 2025年06月18日 ([#77](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/77)) ([a5ba501](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/a5ba50125d2975e99adbe8803b8888bfcf560320)) + ## [0.6.0](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.5.2...v0.6.0) (2025年06月17日) diff --git a/Cargo.lock b/Cargo.lock index 1c074a4..f12dd07 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -156,7 +156,7 @@ dependencies = [ [[package]] name = "rust-mcp-schema" -version = "0.6.0" +version = "0.7.0" dependencies = [ "json5", "serde", diff --git a/Cargo.toml b/Cargo.toml index 91213d8..0ca1737 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-mcp-schema" -version = "0.6.0" +version = "0.7.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 b362172..ee0f5f7 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.6.0 , default-features = false, features=["2024_11_05"] } +rust-mcp-schema = { version: 0.7.0 , 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.6.0 , default-features = false, features=["draft"] } +rust-mcp-schema = { version: 0.7.0 , default-features = false, features=["draft"] } ```