rbs 2.8.1 → 2.8.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: 7260861dc5546d0f4673c4cbff61a97b222553fbedb0f0cf7b45fffa7e70fc29
4
- data.tar.gz: 3a354b926470d26670ac209c3190f0a934289126b4ed484180eebf81d9c9a076
3
+ metadata.gz: cf3c8572ef6596d9598901e8674b111f99d4c988561bf568c15eafe52b4cc1bd
4
+ data.tar.gz: 460e6d18775380538a504d7521bc4d29aefb48eba4812ad463c27ea14f3b898e
5
5
  SHA512:
6
- metadata.gz: '07842180f916e2726333424a6263e05f8cfff54a1165c144fd6dab1137ab26a129ca0a5d22531483868a2cf1b3008bc8e617893f98de4d9433bb0b482fc910ce'
7
- data.tar.gz: 861ac0661a1784d29c2bff49683d4d679d84bf788f20bf899a5c6596d341437a38dc1eb8072f027c44f199f17b0e056203db097056306c6363ac5076072045a8
6
+ metadata.gz: af9c9b7298ca69a0ab2ada373108559c4719d3bfd4157a44af2f664dd1fc4f4a2ba91d175a11487207f971bb61658757533c778fd2a4d8297d996f1eb36ad3d7
7
+ data.tar.gz: 8bf75a3d6fe3ebd6005a8d0234cf18a14771ef6a6968dfa7c289ad64063d1b3e653730ed3d3376d878d0ff42068f9de588bbe6eb7a66ee060053f51446a1db77
data/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  ## master
4
4
 
5
+ ## 2.8.2 (2022-12-21)
6
+
7
+ ### Signature updates
8
+
9
+ * `YAML.load` ([#1170](https://github.com/ruby/rbs/pull/1170))
10
+
11
+ ### Library changes
12
+
13
+ * Add the methods of the `prepend`ed module itself ([#1182](https://github.com/ruby/rbs/pull/1182))
14
+
15
+ ### Miscellaneous
16
+
17
+ * Add `TestSkip` module to skip tests that fails in ruby CI ([#1167](https://github.com/ruby/rbs/pull/1167))
18
+
5
19
  ## 2.8.1 (2022-11-28)
6
20
 
7
21
  ### Signature updates
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rbs (2.8.1)
4
+ rbs (2.8.2)
5
5
 
6
6
  PATH
7
7
  remote: test/assets/test-gem
@@ -263,7 +263,7 @@ module RBS
263
263
  end
264
264
 
265
265
  one_ancestors.each_prepended_module do |mod|
266
- defn = build_instance(mod.name)
266
+ defn = build_instance(mod.name, no_self_types: true)
267
267
  merge_definition(src: defn,
268
268
  dest: definition,
269
269
  subst: Substitution.build(defn.type_params, mod.args))
data/lib/rbs/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RBS
4
- VERSION = "2.8.1"
4
+ VERSION = "2.8.2"
5
5
  end
@@ -143,7 +143,7 @@ module YAML
143
143
  # `fallback` return value, which defaults to `false`. See load for options.
144
144
  #
145
145
  %a{annotate:rdoc:copy:Psych.load_file}
146
- def self.load_file: (string, ?fallback: untyped, ?symbolize_names: bool, ?freeze: bool) -> untyped
146
+ def self.load_file: (string | _ToPath, ?fallback: untyped, ?symbolize_names: bool, ?freeze: bool) -> untyped
147
147
 
148
148
  # <!--
149
149
  # rdoc-file=ext/psych/lib/psych.rb
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.8.1
4
+ version: 2.8.2
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-28 00:00:00.000000000 Z
11
+ date: 2022-12-21 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.