From 1fa8673a58cdd4a38db2f61e96024805c05a90d2 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Sat, 1 Aug 2026 11:27:48 +0900 Subject: [PATCH] Release 1.1.0 This release primarily addresses https://github.com/modelcontextprotocol/ruby-sdk/issues/474. Work on full support for the 2026-07-28 specification, including stateless mode, is ongoing and will continue in future releases. --- CHANGELOG.md | 11 +++++++++++ lib/mcp/version.rb | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e0ba3205..27e2be4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.0] - 2026-08-01 + +### Added + +- Support 2026-07-28 as the Latest Protocol Version (#476) +- Expose server tool annotations on MCP::Client::Tool (#445) + +### Fixed + +- Preserve explicit tool response content (#469) + ## [1.0.0] - 2026-07-24 First stable release. The public API is now stable: breaking changes ship only in major releases, diff --git a/lib/mcp/version.rb b/lib/mcp/version.rb index 14e71dc2..2d7cb5fc 100644 --- a/lib/mcp/version.rb +++ b/lib/mcp/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module MCP - VERSION = "1.0.0" + VERSION = "1.1.0" end