From 954078d90c55f4963ba3d9d29742fa7fd3cc907d Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Thu, 16 Apr 2026 02:14:52 +0900 Subject: [PATCH] Release 0.13.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. In particular, releasing "Make `StreamableHTTPTransport` a Rack application" soon would help keep it consistent with the README.md for Rails integration. --- CHANGELOG.md | 13 +++++++++++++ lib/mcp/version.rb | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc50870..9e0e96d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.0] - 2026-04-16 + +### Added + +- Make `StreamableHTTPTransport` a Rack application (#263) +- Support `elicitation/create` per MCP specification (#312) +- Add `around_request` hook for request instrumentation (#309) +- Add `_meta` field to resource, content, and result classes (#310) + +### Removed + +- Remove `Server#create_sampling_message` direct call (#311) + ## [0.12.0] - 2026-04-11 ### Added diff --git a/lib/mcp/version.rb b/lib/mcp/version.rb index aeddea7..8378006 100644 --- a/lib/mcp/version.rb +++ b/lib/mcp/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module MCP - VERSION = "0.12.0" + VERSION = "0.13.0" end