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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/lib/rbs/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cef77dc4a4c3abe7192ddcd40da72ec04727c214031893d20f70388ed427340c
|
|
4
|
+
data.tar.gz: c2f8cb98f97f6fa3961a0da6fdcf5de657fa2aed7e1372a9973ff47613372194
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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