rbs 4.1.1.dev.1-java → 4.1.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: 13ac349b7542c3af0145a7cf52ed799ceab8b4ce9677dc03eb8131b446d81c53
4
+ data.tar.gz: 67135a429a53990a268c9e1443b21c956295553d165732cd01d6f225b655a40a
5
5
  SHA512:
6
- metadata.gz: 143b660efe763ad6e26ca669db797008bd1db81fbd68deb3c59502d4e37be28657bcb3e6dbeef961e03937c4369bfe56fec72a5ebc4f44cf5f247fe6e6629e18
7
- data.tar.gz: e6f50f4d3212e2cb37fd608ffdb1e447f3ca9f8a822060441507d673cd16adfe2295f3612f2cec716cf0ff8d7e95087f833f40785af52d4d5ce7d7bcfb41893c
6
+ metadata.gz: c2eca0067eacfa068eed22515637685a25cb6b90121c06658d092ef4b3f171fbc48d8101573b2819762bc10ee3c45ae2ef78d4b8a99c460120fbbeea48191f37
7
+ data.tar.gz: 48dce317122fcfdf4b3b8dc4ec2f95e13662ff58dc165706c705cddd03d838fd29963029bff001741a272e11f57bad6fd7f6cdc506cce8286ea50def54af15e5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 4.1.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"
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
5
5
  platform: java
6
6
  authors:
7
7
  - Soutaro Matsumoto