From 0365d77a9596c105157bfa2cf36ebfca8b16261a Mon Sep 17 00:00:00 2001 From: Soutaro Matsumoto Date: Thu, 3 Oct 2024 12:03:19 +0900 Subject: [PATCH] Version 3.6.1 --- CHANGELOG.md | 11 +++++++++++ Gemfile.lock | 2 +- lib/rbs/version.rb | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb8cc2b52..aa96c03e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # CHANGELOG +## 3.6.1 (2024-10-03) + +### Library changes + +* Mark as ractor-safe ([#2041](https://github.com/ruby/rbs/pull/2041)) + +### Miscellaneous + +* Omit IOConsoleTest with Windows platform ([#2044](https://github.com/ruby/rbs/pull/2044)) +* Recover `$stdout` after test ([#2042](https://github.com/ruby/rbs/pull/2042)) + ## 3.6.0 (2024-09-30) Nothing changed since `3.6.0.pre.3`. diff --git a/Gemfile.lock b/Gemfile.lock index 6d816a75d..5dce1050b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rbs (3.6.0) + rbs (3.6.1) logger PATH diff --git a/lib/rbs/version.rb b/lib/rbs/version.rb index 7f88cf672..601fe8d45 100644 --- a/lib/rbs/version.rb +++ b/lib/rbs/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module RBS - VERSION = "3.6.0" + VERSION = "3.6.1" end