From 4fb0049fd4a2798ff0d79d5b02ad968dbb8675ca Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Sun, 14 Jun 2026 16:56:55 +0900 Subject: [PATCH] Release 0.20.0 New features and changes have landed, making it a good time to cut a release. Further feature proposals can be incorporated in future releases. --- CHANGELOG.md | 21 +++++++++++++++++++++ lib/mcp/version.rb | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0a5e799..c020db62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.20.0] - 2026-06-14 + +### Added + +- Support W3C Trace Context Propagation via `_meta` per SEP-414 (#397) +- Support OAuth `client_credentials` grant in OAuth client (#399) +- Add `annotations` field to `MCP::Resource` and `MCP::ResourceTemplate` per MCP specification (#403) + +### Changed + +- Re-run OAuth flow on 403 `insufficient_scope` (step-up) (#368) +- Speed up `Tool::Schema` validation by 5x to 100x (#369) +- Use JSON-RPC error envelope for `StreamableHTTPTransport` errors (#371) +- Pin RFC 8414 default well-known suffix per SEP-2351 (#395) +- Default missing `MCP-Protocol-Version` to `2025-03-26` in `StreamableHTTPTransport` (#392) + +### Fixed + +- Preserve the request ID in invalid request error responses (#400) +- Standardize Resource Not Found errors on -32602 with URI data per SEP-2164 (#402) + ## [0.19.0] - 2026-06-13 ### Added diff --git a/lib/mcp/version.rb b/lib/mcp/version.rb index cb6585cd..b885c8e0 100644 --- a/lib/mcp/version.rb +++ b/lib/mcp/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module MCP - VERSION = "0.19.0" + VERSION = "0.20.0" end