From f93860456e3a07e9a5116b941020fbdf9f52eafa Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Tue, 9 Jun 2026 01:00:38 +0900 Subject: [PATCH] Release 0.19.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 | 8 ++++++++ lib/mcp/version.rb | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index afed4929..607ebf1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.19.0] - 2026-06-09 + +### Added + +- Support Client ID Metadata Documents in OAuth client (#361) +- Request `offline_access` scope when supported (#365) +- Add `size` field to `MCP::Resource` per MCP specification (#393) + ## [0.18.0] - 2026-05-30 ### Added diff --git a/lib/mcp/version.rb b/lib/mcp/version.rb index eea2cb40..cb6585cd 100644 --- a/lib/mcp/version.rb +++ b/lib/mcp/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module MCP - VERSION = "0.18.0" + VERSION = "0.19.0" end