From d710ede47db9665447ceda557b2252669bfa9663 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 3 Aug 2026 02:55:04 +0000 Subject: [PATCH] Version 4.1.2 The 4.1.2 release proper, cut from `master` after 4.1.1 and the `4.1.2.dev.1` release in between. `Gemfile.lock` is regenerated with the bump, and CHANGELOG.md gains the 4.1.2 section. The changelog covers the whole cycle since 4.1.1, the `.dev.1` release included, which is how a release proper is written up. Both entries are the stdlib test suite, which is excluded from the gem's files, so nothing in this release reaches the gem. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_014QUAgW2m9wsYE1cLM1fFbw --- CHANGELOG.md | 7 +++++++ Gemfile.lock | 2 +- lib/rbs/version.rb | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b7a780fcf..7a6923c174 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## 4.1.2 (2026-08-03) + +### Miscellaneous + +* Keep GC disabled during GC_test#test_stress_and_stress= ([#3061](https://github.com/ruby/rbs/pull/3061)) +* Fix GC_test#test_enable leaving GC disabled for the rest of the suite ([#3059](https://github.com/ruby/rbs/pull/3059)) + ## 4.1.1 (2026-07-30) ### Library changes diff --git a/Gemfile.lock b/Gemfile.lock index a0f1a0bae5..1da8a68e6d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -22,7 +22,7 @@ GIT PATH remote: . specs: - rbs (4.1.2.dev.1) + rbs (4.1.2) logger prism (>= 1.6.0) tsort diff --git a/lib/rbs/version.rb b/lib/rbs/version.rb index 877e44f30d..243f184d5b 100644 --- a/lib/rbs/version.rb +++ b/lib/rbs/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module RBS - VERSION = "4.1.2.dev.1" + VERSION = "4.1.2" end