From b6d76cef0c14c60ccc5007ef27d4d166f3186a75 Mon Sep 17 00:00:00 2001 From: Soutaro Matsumoto Date: Tue, 24 Dec 2024 16:14:22 +0900 Subject: [PATCH] Version 3.8.0 --- CHANGELOG.md | 16 ++++++++++++++++ Gemfile.lock | 2 +- lib/rbs/version.rb | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eebaf4400..c71a8c827 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # CHANGELOG +## 3.8.0 (2024-12-24) + +### Signature updates + +* `Dir.mktmpdir` ([#2158](https://github.com/ruby/rbs/pull/2158)) +* `File.join` ([#2158](https://github.com/ruby/rbs/pull/2158)) +* `IO#each_line` ([#2151](https://github.com/ruby/rbs/pull/2151)) +* `Kernel#readlines` ([#2151](https://github.com/ruby/rbs/pull/2151)) +* `Ractor.store_if_absent` ([#2198](https://github.com/ruby/rbs/pull/2198)) +* Update docs as of 2024-12-24, 16:13 JST ([#2193](https://github.com/ruby/rbs/pull/2193)) + +### Library changes + +* Adjust capacity of location children ([#2197](https://github.com/ruby/rbs/pull/2197)) +* Should validate self-type on Proc ([#2192](https://github.com/ruby/rbs/pull/2192)) + ## 3.8.0.pre.1 (2024-12-19) ### Signature updates diff --git a/Gemfile.lock b/Gemfile.lock index 3b6c8b5c2..38a2bb3d6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rbs (3.8.0.pre.1) + rbs (3.8.0) logger PATH diff --git a/lib/rbs/version.rb b/lib/rbs/version.rb index daff18eb9..deda58406 100644 --- a/lib/rbs/version.rb +++ b/lib/rbs/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module RBS - VERSION = "3.8.0.pre.1" + VERSION = "3.8.0" end