rbs 2.5.0 → 2.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/Gemfile.lock +1 -1
- data/lib/rbs/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 606a4457cf9a5e23f662ec8bcb268e809a2a95002004d09121a27b28e9fd84f4
|
|
4
|
+
data.tar.gz: 15616c8b72c55febd4d07059ff1a67b37f48464199b365f5918bb2b8586d11c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c257a85148c369fdc8b9d4fc8338f4c0ee08b3e7b092ab7cd5aa4e68ebc408ad95a50bf9e7846c8aad041b03c011fe6081e1cbbc9e998b1d54430a5ded361140
|
|
7
|
+
data.tar.gz: 848bf5da659e1eb6fcab75e8879be66befbdc2c048841ac7b5b0501bd92441cfad94b6838399d07e99e85f4f7192cf7e4498213b5c6db526bbadb119c1134d77
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
## master
|
|
4
4
|
|
|
5
|
+
## 2.5.1 (2022-06-19)
|
|
6
|
+
|
|
7
|
+
This is a maintenance release mainly to fix errors detected in CI of `ruby/ruby`.
|
|
8
|
+
Nothing changed related to the users of RBS gem.
|
|
9
|
+
|
|
10
|
+
### Miscellaneous
|
|
11
|
+
|
|
12
|
+
* Skip failing tests on ruby/ruby CI ([\#1036](https://github.com/ruby/rbs/pull/1036))
|
|
13
|
+
* Fix warnings ([\#1035](https://github.com/ruby/rbs/pull/1035) except changes on `test/tools/sort_test.rb` that is not included in this release)
|
|
14
|
+
* Fix `Regexp.new` argument ([\#1034](https://github.com/ruby/rbs/pull/1034))
|
|
15
|
+
* Fix errors with OpenSSL 3 ([\#1029](https://github.com/ruby/rbs/pull/1029))
|
|
16
|
+
* Fix `OpenSSL::PKey::PKeyError: EVP_PKEY_keygen: bad ffc parameters` with OpenSSL 3 ([\#1005](https://github.com/ruby/rbs/pull/1005))
|
|
17
|
+
|
|
5
18
|
## 2.5.0 (2022-05-20)
|
|
6
19
|
|
|
7
20
|
This is a minor release with tuple type/record type syntax updates and `rbs prototype` improvements.
|
data/Gemfile.lock
CHANGED
data/lib/rbs/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rbs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.5.
|
|
4
|
+
version: 2.5.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Soutaro Matsumoto
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-06-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: RBS is the language for type signatures for Ruby and standard library
|
|
14
14
|
definitions.
|
|
@@ -381,7 +381,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
381
381
|
- !ruby/object:Gem::Version
|
|
382
382
|
version: '0'
|
|
383
383
|
requirements: []
|
|
384
|
-
rubygems_version: 3.3.
|
|
384
|
+
rubygems_version: 3.3.3
|
|
385
385
|
signing_key:
|
|
386
386
|
specification_version: 4
|
|
387
387
|
summary: Type signature for Ruby.
|