rbs 3.9.1 → 3.9.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6909722b4c6665b15d20004c29a6d661bd43eaa6605a55338cbb51b3b9cd6c2b
4
- data.tar.gz: f9e36cc5e3206c3fdd78d5df2eee8d11d2a3e7ca19178d03758c555b5dff4306
3
+ metadata.gz: 622a88b48ca594c8ce1086b7014441f4d1a62e7810711ce1e869e79b6037409b
4
+ data.tar.gz: 9327243274adfcea53f0be8fd89c3ae8a0be69aa793aa08af5e0022e431b6124
5
5
  SHA512:
6
- metadata.gz: deb3fc1000baa0caa36c1fd9818c99faeca9ba19a4310f7d3650a1a09e56db0de9c977596cc3a9038c59a5d35476c9fbe2ac6856b8bd8ce1c9cb09fb753e466c
7
- data.tar.gz: 6953da211f451576ce291f389aaf9028bcf7b291bdad20e591d9e764b2b31af044706746f57e74889395fba49e08386e9c9eee1574df5d6d1ea93cd37226ef10
6
+ metadata.gz: 22337542c0abe8b1aebe8aac9ca5edf2779649841aef7791428c4e1b2077e0787dcd755ef3aae0d3d69aad09c8386ddaed64dd8f304582ad0cee70878c856e78
7
+ data.tar.gz: f97828348045aa0bfc5086b3e28f8e22011323929c1af5c90ca5a9224e7b00824267c16da2857427bc7bff9bc860592659fe38d88f622fefb6da04dc83a26dd4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 3.9.3 (2025-05-09)
4
+
5
+ ### Miscellaneous
6
+
7
+ * Use erb instead of set for load path testing ([#2468](https://github.com/ruby/rbs/pull/2468))
8
+
9
+ ## 3.9.2 (2025-03-31)
10
+
11
+ ### Library changes
12
+
13
+ * Change `{}` to `{ 0 }` ([#2354](https://github.com/ruby/rbs/pull/2354))
14
+
3
15
  ## 3.9.1 (2025-03-24)
4
16
 
5
17
  ### Miscellaneous
@@ -334,7 +334,7 @@ parserstate *alloc_parser(VALUE buffer, lexstate *lexer, int start_pos, int end_
334
334
  .vars = NULL,
335
335
  .last_comment = NULL,
336
336
 
337
- .constant_pool = {},
337
+ .constant_pool = { 0 },
338
338
  };
339
339
 
340
340
  // The parser's constant pool is mainly used for storing the names of type variables, which usually aren't many.
data/lib/rbs/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RBS
4
- VERSION = "3.9.1"
4
+ VERSION = "3.9.3"
5
5
  end
@@ -169,7 +169,7 @@ rbs_constant_pool_resize(rbs_constant_pool_t *pool) {
169
169
  }
170
170
 
171
171
  // This storage is initialized by `Init_rbs_extension()` in `main.c`.
172
- static rbs_constant_pool_t RBS_GLOBAL_CONSTANT_POOL_STORAGE = {};
172
+ static rbs_constant_pool_t RBS_GLOBAL_CONSTANT_POOL_STORAGE = { 0 };
173
173
  rbs_constant_pool_t *RBS_GLOBAL_CONSTANT_POOL = &RBS_GLOBAL_CONSTANT_POOL_STORAGE;
174
174
 
175
175
  /**
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbs
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.9.1
4
+ version: 3.9.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Soutaro Matsumoto
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-03-24 00:00:00.000000000 Z
10
+ date: 2025-05-09 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: logger