From a95182ca553c33b3b4b4687bdd5d0c3c91cc946f Mon Sep 17 00:00:00 2001 From: Ali Hashemi <14126952+hashemix@users.noreply.github.com> Date: Sat, 30 Aug 2025 09:31:24 -0300 Subject: [PATCH] chore(main): release 0.7.3 --- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a44f060..319161f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.7.3](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.7.2...v0.7.3) (2025-08-30) + + +### Features + +* enhance CallToolError API and Introduce is_initialized_notification to ([#85](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/85)) ([83734bf](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/83734bf8a6956c779be6533e3dee16caa45a6884)) + ## [0.7.2](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.7.1...v0.7.2) (2025-07-27) diff --git a/Cargo.lock b/Cargo.lock index 23408b8..72964ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -149,7 +149,7 @@ dependencies = [ [[package]] name = "rust-mcp-schema" -version = "0.7.2" +version = "0.7.3" dependencies = [ "json5", "serde", diff --git a/Cargo.toml b/Cargo.toml index 90f6412..b9d8d74 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-mcp-schema" -version = "0.7.2" +version = "0.7.3" 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 6ba4460..29ab523 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.2 , default-features = false, features=["2024_11_05"] } +rust-mcp-schema = { version: 0.7.3 , 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.2 , default-features = false, features=["draft"] } +rust-mcp-schema = { version: 0.7.3 , default-features = false, features=["draft"] } ```