From 0a5fbab8fea2fb33d24a162c114aebd6f5da602b Mon Sep 17 00:00:00 2001 From: Soutaro Matsumoto Date: Wed, 21 Dec 2022 09:57:50 +0900 Subject: [PATCH] Version 2.8.2 --- CHANGELOG.md | 14 ++++++++++++++ Gemfile.lock | 2 +- lib/rbs/version.rb | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d4ab5813..c5ce0d3e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ ## master +## 2.8.2 (2022-12-21) + +### Signature updates + +* `YAML.load` ([#1170](https://github.com/ruby/rbs/pull/1170)) + +### Library changes + +* Add the methods of the `prepend`ed module itself ([#1182](https://github.com/ruby/rbs/pull/1182)) + +### Miscellaneous + +* Add `TestSkip` module to skip tests that fails in ruby CI ([#1167](https://github.com/ruby/rbs/pull/1167)) + ## 2.8.1 (2022-11-28) ### Signature updates diff --git a/Gemfile.lock b/Gemfile.lock index dbe6bb3ab..58fbb6e94 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rbs (2.8.1) + rbs (2.8.2) PATH remote: test/assets/test-gem diff --git a/lib/rbs/version.rb b/lib/rbs/version.rb index d44c166bd..f78916ca3 100644 --- a/lib/rbs/version.rb +++ b/lib/rbs/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module RBS - VERSION = "2.8.1" + VERSION = "2.8.2" end