rbs 4.1.1.dev.1-java → 4.1.1.pre.1-java

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 +11 -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: 56066190d5e0eaa7fceb57ad8040f658da10d46492f5d54f5393daddfb1f8fca
4
- data.tar.gz: 4dd044bdcd79b8084863c8daff2e9544094ab16890eebde97be8a225e7ed8e6c
3
+ metadata.gz: e68e5f0ead2c31e8a4ba1e8d597c4a9f6f93880edbddbf77c7a330a8a55d196f
4
+ data.tar.gz: 64b5a5eb90cbfc1bf70489401d2d30e9998b1e579bcbc81f1459871c8c339023
5
5
  SHA512:
6
- metadata.gz: 143b660efe763ad6e26ca669db797008bd1db81fbd68deb3c59502d4e37be28657bcb3e6dbeef961e03937c4369bfe56fec72a5ebc4f44cf5f247fe6e6629e18
7
- data.tar.gz: e6f50f4d3212e2cb37fd608ffdb1e447f3ca9f8a822060441507d673cd16adfe2295f3612f2cec716cf0ff8d7e95087f833f40785af52d4d5ce7d7bcfb41893c
6
+ metadata.gz: b5536aaba1814d05dfd3c6f4e3466f2c54e57f9a8544e95fb16fdd4e06d0f2867d412a17dd3679090253a3b9513f185af971acd1daf8bbf46541990f0a2ef6a8
7
+ data.tar.gz: cc1f700e6b09443afe850e8c65a48f54000ce5ccc6cbf68072c837a193b9f7c63f6556c9db03752464daf7fc9376ff7053ef1c312707bfdf4da300dabbf6f34e
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RBS
4
- VERSION = "4.1.1.dev.1"
4
+ VERSION = "4.1.1.pre.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.1.1.dev.1
4
+ version: 4.1.1.pre.1
5
5
  platform: java
6
6
  authors:
7
7
  - Soutaro Matsumoto