From 5687bdab9b159aeaced8ec5309281058a4080f12 Mon Sep 17 00:00:00 2001 From: Soutaro Matsumoto Date: Mon, 8 Sep 2025 21:55:16 +0900 Subject: [PATCH] Version 3.9.5 --- CHANGELOG.md | 13 +++++++++++++ Gemfile.lock | 2 +- lib/rbs/version.rb | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c404079625..14ba68d78f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # CHANGELOG +## 3.9.5 (2025-09-08) + +### Signature updates + +* Merge pull request #2655 from ruby/silence-string-deprecation ([#2656](https://github.com/ruby/rbs/pull/2656)) + +### Miscellaneous + +* Allows the use of a path list as RBS_SKIP_TESTS ([#2641](https://github.com/ruby/rbs/pull/2641)) +* Suppress to GCC warning with multi-line comment ([#2646](https://github.com/ruby/rbs/pull/2646)) +* Backport to 3.9 ([#2487](https://github.com/ruby/rbs/pull/2487)) +* Use erb instead of set for load path testing ([#2468](https://github.com/ruby/rbs/pull/2468)) + ## 3.9.4 (2025-05-15) ### Miscellaneous diff --git a/Gemfile.lock b/Gemfile.lock index abb63d55f9..d43f828e8e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rbs (3.9.4) + rbs (3.9.5) logger PATH diff --git a/lib/rbs/version.rb b/lib/rbs/version.rb index 0a90c854b0..322a4e39a7 100644 --- a/lib/rbs/version.rb +++ b/lib/rbs/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module RBS - VERSION = "3.9.4" + VERSION = "3.9.5" end