From f2ce20398a699da34e1b9b0c6917addd8639df42 Mon Sep 17 00:00:00 2001 From: Ali Hashemi <14126952+hashemix@users.noreply.github.com> Date: Fri, 21 Feb 2025 06:50:19 -0400 Subject: [PATCH] chore(main): release 0.1.7 --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1ee0cf..efbdcb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.1.7](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.1.6...v0.1.7) (2025-02-21) + + +### Features + +* add message_type to MCPMessage trait ([#26](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/26)) ([aca2336](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/aca2336f6fa9258098d934bb5e5205ae12ebed1f)) +* implement ToMessage trait ([#31](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/31)) ([435f18b](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/435f18b376db0f368f8995fc5c76f8b95eb75ebe)) +* introduce FromMessage trait ([#30](https://github.com/rust-mcp-stack/rust-mcp-schema/issues/30)) ([cc46100](https://github.com/rust-mcp-stack/rust-mcp-schema/commit/cc46100a3e66889f21df919c98abefd4598dfa30)) + ## [0.1.6](https://github.com/rust-mcp-stack/rust-mcp-schema/compare/v0.1.5...v0.1.6) (2025-02-17) diff --git a/Cargo.lock b/Cargo.lock index 30164fe..b708de4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -156,7 +156,7 @@ dependencies = [ [[package]] name = "rust-mcp-schema" -version = "0.1.6" +version = "0.1.7" dependencies = [ "json5", "serde", diff --git a/Cargo.toml b/Cargo.toml index 68a41e9..a1ac5de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-mcp-schema" -version = "0.1.6" +version = "0.1.7" 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."