rbs 4.0.1.dev.2 → 4.0.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +13 -0
  3. data/lib/rbs/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8be2481f2dbf4d8ffa7af8731a966020a2c3cfb37fc3de8c33e252c100f8dea2
4
- data.tar.gz: f93e354ec38fdad73c853b7d7c7243684f7e277f48f4d6e60b7c4aa92ae7da28
3
+ metadata.gz: cef77dc4a4c3abe7192ddcd40da72ec04727c214031893d20f70388ed427340c
4
+ data.tar.gz: c2f8cb98f97f6fa3961a0da6fdcf5de657fa2aed7e1372a9973ff47613372194
5
5
  SHA512:
6
- metadata.gz: 61d4b0cf2b772e42ce515783923865b8c7dcc4119cba471bc0bfdbfc46b4a01c10b18ebdf1738c611b884624c1ae13db65c6d3cc548a51ae1a7f080178496168
7
- data.tar.gz: af23c10d85ed68acc8ddead0073d8832186d54c94a7423bbeaab66a9ef175b026f06c5e3b2fc0ea3e3f46edb9739d3c1f2d9beeaee8d6dbe7c031ea60f4751ee
6
+ metadata.gz: d43c6ab7581b9e5c317743f14430edb8afb1f3b71dbf35cd0b28b876981c0fc49b78eef11bd7ae745a181c720d0eb2b5bc0a95e02aa40f070d31f3951730953f
7
+ data.tar.gz: 43b3322fec01f1cf126bbd3df6843a0054c3c5196eeecbab593f5c62c7b8ae188a126ef8bbfa160a434ce7ed5f47f1cba0cf87057de1b027c8d03fd7ef249800
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 4.0.1 (2026-03-23)
4
+
5
+ This is a minor release to fix Ruby CI failure, which was caused by symlinks included in the `rust` directory.
6
+
7
+ ### Library changes
8
+
9
+ * Fix `() -> (void)` being rejected as SyntaxError ([#2884](https://github.com/ruby/rbs/pull/2884))
10
+
11
+ ### Miscellaneous
12
+
13
+ * Drop crates ([#2887](https://github.com/ruby/rbs/pull/2887))
14
+ * Add newline at eof ([#2885](https://github.com/ruby/rbs/pull/2885))
15
+
3
16
  ## 4.0.0 (2026-03-16)
4
17
 
5
18
  RBS 4.0 ships with experimental RBS inline syntax support, allowing you to write type annotations directly in Ruby source files. See [docs/inline.md](docs/inline.md) for the syntax details.
data/lib/rbs/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RBS
4
- VERSION = "4.0.1.dev.2"
4
+ VERSION = "4.0.1"
5
5
  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: 4.0.1.dev.2
4
+ version: 4.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Soutaro Matsumoto