From d39c3f7b044cea344a26df4da661ebc7be03971e Mon Sep 17 00:00:00 2001 From: Ali Hashemi <14126952+hashemix@users.noreply.github.com> Date: Tue, 23 Jun 2026 21:37:50 -0300 Subject: [PATCH] chore: release --- .release-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.release-manifest.json b/.release-manifest.json index 582db2f..8c7bf66 100644 --- a/.release-manifest.json +++ b/.release-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.10.2" + ".": "0.10.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d4e45b..98e67ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.10.3](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.10.2...v0.10.3) (2026-06-24) + + +### 🚀 Features + +* Add `ContentBlock` embedded resource helpers and fix `NumberSchema` field types ([#115](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/115)) ([c63a2db](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/c63a2dba1dbe82472501c6841d7847003d4fbc35)) + ## [0.10.2](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.10.1...v0.10.2) (2026-06-21) diff --git a/Cargo.lock b/Cargo.lock index 1ffaded..d2259d5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -148,7 +148,7 @@ dependencies = [ [[package]] name = "rust-mcp-schema" -version = "0.10.2" +version = "0.10.3" dependencies = [ "json5", "serde", diff --git a/Cargo.toml b/Cargo.toml index e22c2b4..e598eb6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-mcp-schema" -version = "0.10.2" +version = "0.10.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 33c2291..20f1b84 100644 --- a/README.md +++ b/README.md @@ -99,14 +99,14 @@ Example: enable `2025-06-18` version of the schema: ```toml # Cargo.toml -rust-mcp-schema = { version: 0.10.2 , default-features = false, features=["2025_06_18"] } +rust-mcp-schema = { version: 0.10.3 , default-features = false, features=["2025_06_18"] } ``` Example: enable `draft`` version of the schema : ```toml #Cargo.toml -rust-mcp-schema = { version: 0.10.2 , default-features = false, features=["draft"] } +rust-mcp-schema = { version: 0.10.3 , default-features = false, features=["draft"] } ```