From 4af216fa324f80feda11586d49ea2f693e735620 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Fri, 20 Feb 2026 11:55:11 +0900 Subject: [PATCH] Release 0.7.1 This is a release that includes several bug fixes. --- CHANGELOG.md | 8 ++++++++ lib/mcp/version.rb | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 957e7ce2..b71fb288 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.1] - 2026-02-21 + +### Fixed + +- Fix `Resource::Contents#to_h` to use correct property names per MCP spec (#235) +- Return JSON-RPC protocol errors for unknown tool calls (#231) +- Fix `logging/setLevel` to return empty hash per MCP specification (#230) + ## [0.7.0] - 2026-02-14 ### Added diff --git a/lib/mcp/version.rb b/lib/mcp/version.rb index 1297fbf9..0380996c 100644 --- a/lib/mcp/version.rb +++ b/lib/mcp/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module MCP - VERSION = "0.7.0" + VERSION = "0.7.1" end