From 3412153f64f0121ff6cac93f5f83755e09ecfe8b Mon Sep 17 00:00:00 2001 From: Soutaro Matsumoto Date: Fri, 20 Jan 2023 12:32:04 +0900 Subject: [PATCH] Version 2.8.4 --- CHANGELOG.md | 11 +++++++++-- Gemfile.lock | 2 +- lib/rbs/version.rb | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a58364ce..08b0c1f00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,19 @@ ## master +## 2.8.4 (2023-01-20) + +### Miscellaneous + +* Make `rake stdlib_test` run with single process (Backport [#1207](https://github.com/ruby/rbs/pull/1207), [#1211](https://github.com/ruby/rbs/pull/1211)) +* Remove `steep/*` files from `.gem` (Backport [#1214](https://github.com/ruby/rbs/pull/1214), [#1216](https://github.com/ruby/rbs/pull/1216)) + ## 2.8.3 (2023-01-06) ### Library changes -* Use `-std=gnu99` instead of `-std=c99` ([#973](https://github.com/ruby/rbs/pull/973)) -* Add `rbs_` prefix to `skip` function ([#1186](https://github.com/ruby/rbs/pull/1186)) +* Use `-std=gnu99` instead of `-std=c99` (Backport [#973](https://github.com/ruby/rbs/pull/973)) +* Add `rbs_` prefix to `skip` function (Backport [#1186](https://github.com/ruby/rbs/pull/1186)) ## 2.8.2 (2022-12-21) diff --git a/Gemfile.lock b/Gemfile.lock index 9879d1ac3..d2ab17b12 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rbs (2.8.3) + rbs (2.8.4) PATH remote: test/assets/test-gem diff --git a/lib/rbs/version.rb b/lib/rbs/version.rb index 2308fd547..8fa7b06b6 100644 --- a/lib/rbs/version.rb +++ b/lib/rbs/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module RBS - VERSION = "2.8.3" + VERSION = "2.8.4" end