rbs 1.3.2 → 1.3.3
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/.github/workflows/ruby.yml +1 -1
- data/CHANGELOG.md +8 -0
- data/lib/rbs/version.rb +1 -1
- data/stdlib/resolv/0/resolv.rbs +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: 7bd9429b1384739e9aae5f7b2c1d19ee02b6ea34b49e4a17a60df270acc484a0
|
|
4
|
+
data.tar.gz: 931456b6cb01870a8ac178115effe3d13f8ce8e5968a94954b702c4c7a1f3645
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c8b595190e9c69217b56d494859d759caa545bd4902a7a2f4ae679bc34720d5e64385b40f48cd77191ea1fe5c06237cd1774372d20abf7d3530308e1648ddd9c
|
|
7
|
+
data.tar.gz: b85b23a46f0cd32fc4b45a90cd5f82b7029d9c37a36af0ccf26e61ae36cd43e0ca71e5c77350546e141e404abf4e8027f43f80b31de371e19aef9379f9a825ab
|
data/.github/workflows/ruby.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## master
|
|
4
4
|
|
|
5
|
+
## 1.3.3 (2021-07-28)
|
|
6
|
+
|
|
7
|
+
This release includes a minor update of `resolv` library RBS and a fix of test for `ruby/ruby` CI.
|
|
8
|
+
|
|
9
|
+
### Signature updates
|
|
10
|
+
|
|
11
|
+
* resolv ([#726](https://github.com/ruby/rbs/pull/726))
|
|
12
|
+
|
|
5
13
|
## 1.3.2 (2021-07-23)
|
|
6
14
|
|
|
7
15
|
This release is to fix a bug introduced by parser update in 1.3.0.
|
data/lib/rbs/version.rb
CHANGED
data/stdlib/resolv/0/resolv.rbs
CHANGED
|
@@ -177,7 +177,7 @@ class Resolv::DNS
|
|
|
177
177
|
# `address` must be a Resolv::IPv4, Resolv::IPv6 or a String. Retrieved names
|
|
178
178
|
# will be Resolv::DNS::Name instances.
|
|
179
179
|
#
|
|
180
|
-
def getnames: (ip_address | dns_name address) -> [Resolv::DNS::Name]
|
|
180
|
+
def getnames: (ip_address | dns_name address) -> Array[Resolv::DNS::Name]
|
|
181
181
|
|
|
182
182
|
# Look up the `typeclass` DNS resource of `name`.
|
|
183
183
|
#
|
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: 1.3.
|
|
4
|
+
version: 1.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Soutaro Matsumoto
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-07-
|
|
11
|
+
date: 2021-07-28 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.
|
|
@@ -294,7 +294,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
294
294
|
- !ruby/object:Gem::Version
|
|
295
295
|
version: '0'
|
|
296
296
|
requirements: []
|
|
297
|
-
rubygems_version: 3.2.
|
|
297
|
+
rubygems_version: 3.2.3
|
|
298
298
|
signing_key:
|
|
299
299
|
specification_version: 4
|
|
300
300
|
summary: Type signature for Ruby.
|