From aa5ed1dacb8a4852d31aac7db349de8d76aec287 Mon Sep 17 00:00:00 2001 From: Soutaro Matsumoto Date: Thu, 17 Nov 2022 21:19:01 +0900 Subject: [PATCH] Version 2.8.0.pre.1 --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ Gemfile.lock | 2 +- lib/rbs/version.rb | 2 +- 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bd1bd3b2..0e13def66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,35 @@ ## master +## 2.8.0.pre.1 (2022-11-17) + +### Signature updates + +* `IO` ([#1132](https://github.com/ruby/rbs/pull/1132)) +* `IO::Buffer` ([#1137](https://github.com/ruby/rbs/pull/1137)) +* `IPAddr` ([#1131](https://github.com/ruby/rbs/pull/1131), [#1151](https://github.com/ruby/rbs/pull/1151)) +* `Socket` ([#1133](https://github.com/ruby/rbs/pull/1133), [#1134](https://github.com/ruby/rbs/pull/1134), [#1151](https://github.com/ruby/rbs/pull/1151)) +* `Yaml` ([#1141](https://github.com/ruby/rbs/pull/1141)) + +### Library changes + +* Make type/method-type parser more flexible about input position ([#1140](https://github.com/ruby/rbs/pull/1140)) +* Raise an error if a class definition inherits a module ([#1152](https://github.com/ruby/rbs/pull/1152)) +* Fix SEGV when parse with invalid content ([#1146](https://github.com/ruby/rbs/pull/1146)) + +#### rbs collection + +* Support to call collection command in child dir ([#1025](https://github.com/ruby/rbs/pull/1025), [#1135](https://github.com/ruby/rbs/pull/1135)) + +### Miscellaneous + +* Remove `rubygems` from `rbs`’s manifest ([#1150](https://github.com/ruby/rbs/pull/1150)) +* Use `untyped` instead of `any` in `syntax.md` ([#1147](https://github.com/ruby/rbs/pull/1147)) +* Fix typo and grammatical mistakes in "Generics" section of `syntax.md` ([#1127](https://github.com/ruby/rbs/pull/1127)) +* Add a doc that describes tools related to RBS ([#1125](https://github.com/ruby/rbs/pull/1125)) +* Add self-type-bindings to `syntax.md` ([#1123](https://github.com/ruby/rbs/pull/1123)) +* Add documentation for `...` in `syntax.md` ([#1120](https://github.com/ruby/rbs/pull/1120)) + ## 2.7.0 (2022-10-07) ### Signature updates diff --git a/Gemfile.lock b/Gemfile.lock index 6aae2a11d..7bf1ad6eb 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rbs (2.7.0) + rbs (2.8.0.pre.1) PATH remote: test/assets/test-gem diff --git a/lib/rbs/version.rb b/lib/rbs/version.rb index a0825ae77..2e720e601 100644 --- a/lib/rbs/version.rb +++ b/lib/rbs/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module RBS - VERSION = "2.7.0" + VERSION = "2.8.0.pre.1" end