rbs 3.4.0.pre.1 → 3.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 48c814d4cbaac5fe01ca09ff353a0fdde62a95b37a677e398925e0f1905b5a4f
4
- data.tar.gz: 3e8ff356790ab3879392996f26db15d0c0e01686a7e496ee4c6e26f9b326b9b2
3
+ metadata.gz: 80cd71579913120f664f5420ded58004a2c03cb9c3f66342f56f0481d3119a70
4
+ data.tar.gz: 85406f959d26cb07b687792b3d260d383fd273cd6492ea3f54a9e2459778e0fb
5
5
  SHA512:
6
- metadata.gz: a14fdcafb7e142a4685fd31325900e24aceee40c17b453e87800bebcc1958e02d9ade0ff912ef711650a8e1ca8adae62c150ccd8377a6859d687be55ba999440
7
- data.tar.gz: 8c69b1dafc7738fb35c6da0a12c33ac7fdc7bcd75f7fcefaf4dc68383b85fb3717fc21ca632d151ec9182633ebea115160edf44324681275de8dbfd945e7ba02
6
+ metadata.gz: 3aed16f6ca4dc85621937734c11cfe0e5ce980a6876d8ac00ad2d776acc9b9660de8f79df1370eaf3e78d1b1b7b8132a46d561662906782d86e01e5ac9a56548
7
+ data.tar.gz: 0dd21966c92b21642163ab1e2a99adc28325f56fc83705ec85a4a2074b47ddac0ab2e254b1ebe95828811d1b765811cdd5ef59689a6fd7960587646ce42a6d2b
@@ -13,7 +13,7 @@ jobs:
13
13
  container:
14
14
  image: rubylang/ruby:3.2-dev-focal
15
15
  env:
16
- RUBY_COMMIT: v3_3_0_rc1
16
+ RUBY_COMMIT: v3_3_0
17
17
  steps:
18
18
  - uses: actions/checkout@v4
19
19
  - name: Install dependencies
data/CHANGELOG.md CHANGED
@@ -2,6 +2,27 @@
2
2
 
3
3
  ## master
4
4
 
5
+ ## 3.4.1 (2023-12-26)
6
+
7
+ ### Signature updates
8
+
9
+ * Update embedded RDoc based on ruby-3.3.0 (Backport #1699) ([#1700](https://github.com/ruby/rbs/pull/1700))
10
+
11
+ ## 3.4.0 (2023-12-21)
12
+
13
+ ### Signature updates
14
+
15
+ * minitest's lifecycle hooks ([#1694](https://github.com/ruby/rbs/pull/1694))
16
+ * `IO.popen`, `IO#read` ([#1693](https://github.com/ruby/rbs/pull/1693))
17
+
18
+ ### Library changes
19
+
20
+ * Fix klass name if klass is singleton_class ([#1695](https://github.com/ruby/rbs/pull/1695))
21
+
22
+ ### Miscellaneous
23
+
24
+ * Suppress warnings on testing ([#1691](https://github.com/ruby/rbs/pull/1691))
25
+
5
26
  ## 3.4.0.pre.1 (2023-12-19)
6
27
 
7
28
  ### Signature updates
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rbs (3.4.0.pre.1)
4
+ rbs (3.4.1)
5
5
  abbrev
6
6
 
7
7
  PATH
data/README.md CHANGED
@@ -181,6 +181,7 @@ puts singleton.methods[:gsub]
181
181
  - [RBS by Example](docs/rbs_by_example.md)
182
182
  - [RBS collection](docs/collection.md)
183
183
  - [Using `Data` and `Struct`](docs/data_and_struct.md)
184
+ - [Releasing a gem with RBS](docs/gem.md)
184
185
 
185
186
  ## Community
186
187
 
data/Rakefile CHANGED
@@ -56,7 +56,7 @@ end
56
56
  task :validate => :compile do
57
57
  require 'yaml'
58
58
 
59
- sh "#{ruby} #{rbs} validate --silent"
59
+ sh "#{ruby} #{rbs} validate"
60
60
 
61
61
  libs = FileList["stdlib/*"].map {|path| File.basename(path).to_s }
62
62
 
@@ -72,7 +72,7 @@ task :validate => :compile do
72
72
  end
73
73
 
74
74
  libs.each do |lib|
75
- sh "#{ruby} #{rbs} -r #{lib} validate --silent"
75
+ sh "#{ruby} #{rbs} -r #{lib} validate"
76
76
  end
77
77
  end
78
78