rbs 4.1.1.dev.1 → 4.1.1.pre.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 +11 -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: 575db44c1f424ffb918b1e7d75ab375ffcf2e31b2eea7eec35b367b770d1fecc
|
|
4
|
+
data.tar.gz: 2a2355bd905f3bedca49e5c4fe9d62a8f052267fbb80c4464b94c0dbf3cea566
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4c788b80279295fab0637ef63d4139125286186672dd4af9a48546d2bfe9fb9e761d3aefb5749e34d3701f00336c6002b8306e4f4f4a5dc856d0b33679366075
|
|
7
|
+
data.tar.gz: 156177a48bc3b40295f6ccb4b0a657c2e1ebee11d761654b79b8811ff5990449e6920acd3cf9ff4a8c961e9151b55a41df796ac3876285f4ea9012be124d7d0d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 4.1.1.pre.1 (2026-07-30)
|
|
4
|
+
|
|
5
|
+
### Library changes
|
|
6
|
+
|
|
7
|
+
* Include the trailing `?` in a keyword key's symbol location ([#3043](https://github.com/ruby/rbs/pull/3043))
|
|
8
|
+
* Mark `type_name` as optional on the alias annotations ([#3039](https://github.com/ruby/rbs/pull/3039))
|
|
9
|
+
|
|
10
|
+
### Miscellaneous
|
|
11
|
+
|
|
12
|
+
* Fix template drift for ext/rbs_extension/ast_translation.c ([#3038](https://github.com/ruby/rbs/pull/3038))
|
|
13
|
+
|
|
3
14
|
## 4.1.0 (2026-07-27)
|
|
4
15
|
|
|
5
16
|
RBS 4.1 ships with JRuby support. The RBS parser is written in plain C without depending on the Ruby C API, so it is compiled to WebAssembly and runs on a Wasm runtime, with the parsed AST serialized in a binary format and decoded into RBS objects. The full test suite runs on JRuby in CI.
|
data/lib/rbs/version.rb
CHANGED