rbs 1.0.1 → 1.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8d03121b9d58454590a45862ba1d479305feae4f2b4d10707ae8e1a3c24d4aba
4
- data.tar.gz: f147d99859cfc7e18b41a751587f7b2cba484bf397d5b306b9fe69f15dd4b452
3
+ metadata.gz: f770aaafebf7f9377990a42eb6d3bb32e733166ecd86407ffc62d386839f9cf0
4
+ data.tar.gz: c6421b9f56d6041e63862147656e1f369d9cc057e3ee35b140fe8fccab0101a4
5
5
  SHA512:
6
- metadata.gz: 2e325492bc73b6d9f2f62660c4e4821f7d3853780f39a957e02ad4b30fc44ca1e687fbde9d0b2843be786e51126fbb5473e1d5ae5c9c719f255bfc50fe2f7cde
7
- data.tar.gz: '03995c9d63b9db359744338497985952eed7608729cb4a259b20af6e68de5eecdf3c996404701e2821f35d4bebfdb1e2c7c8e6289f9b5a7875fd4c6c507bde27'
6
+ metadata.gz: 49dea6bbe71560ffd16a38d66716cc0e7f00293d0bb1c4be9951c65185df5286cab8ca0e49a1d2d13cd1b05f97d8695e9242f3e4a356ad3db6225b3bfc4bfbba
7
+ data.tar.gz: 57ad2767f7d652ba5fda881d5fcb8f67dc6a7f631a13369026946df9a5f70c72c6497d9fdaa9a540b128285ba4d83a5fcdd1548c0ee9542048e09835e153abc2
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## master
4
4
 
5
+ ## 1.0.2 (2021-01-28)
6
+
7
+ * Signature Updates
8
+ * Kernel([#582](https://github.com/ruby/rbs/pull/582))
9
+
5
10
  ## 1.0.1 (2021-01-27)
6
11
 
7
12
  * Signature Updates
@@ -54,7 +54,7 @@ module Kernel : BasicObject
54
54
  # try { "hello" } #=> "hello"
55
55
  # try do "hello" end #=> "hello"
56
56
  # ```
57
- def self.block_given?: () -> bool
57
+ def self?.block_given?: () -> bool
58
58
 
59
59
  # Returns the names of the current local variables.
60
60
  #
@@ -1,3 +1,3 @@
1
1
  module RBS
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Soutaro Matsumoto