From 8fbc2b46313479cdbf5afbb44045583f94e813e3 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Thu, 26 Mar 2026 23:09:35 +0900 Subject: [PATCH] Release 0.9.2 --- CHANGELOG.md | 7 +++++++ lib/mcp/version.rb | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3620a3f0..f7fa0700 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.2] - 2026-03-27 + +### Fixed + +- Use accessor method in `server_context_with_meta` instead of ivar (#273) +- Reject duplicate SSE connections with 409 to prevent stream hijacking + ## [0.9.1] - 2026-03-23 ### Added diff --git a/lib/mcp/version.rb b/lib/mcp/version.rb index da708db5..3a5b450a 100644 --- a/lib/mcp/version.rb +++ b/lib/mcp/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module MCP - VERSION = "0.9.1" + VERSION = "0.9.2" end