From 27c71bb293a2dc6df5134cbe931ae8bef0f87395 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Sat, 11 Apr 2026 00:56:32 +0900 Subject: [PATCH] Release 0.12.0 New features and fixes have been added, making it a good time to cut a release. Further feature proposals can be incorporated in future releases. --- CHANGELOG.md | 14 ++++++++++++++ lib/mcp/version.rb | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d7cbbc4..cc508700 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.0] - 2026-04-11 + +### Added + +- Support customizing the Faraday client in `MCP::Client::HTTP` (#306) + +### Changed + +- Auto-set `server.transport` in `Transport#initialize` (#305) + +### Fixed + +- Validate Content-Type on POST requests (#304) + ## [0.11.0] - 2026-04-06 ### Added diff --git a/lib/mcp/version.rb b/lib/mcp/version.rb index 4bc1256e..aeddea7f 100644 --- a/lib/mcp/version.rb +++ b/lib/mcp/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module MCP - VERSION = "0.11.0" + VERSION = "0.12.0" end