rbs 3.6.0 → 3.6.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4fb0b6146ae3fb623941640740fb04a27f47944f69c7c8392eecbe483fdc585d
4
- data.tar.gz: eac17e29129ce5d87886a3405c9a5f3e3088f1f7d4ff593e1bd4237b4d4753c6
3
+ metadata.gz: cd93b9bdce0e6148409689ba4aa2db4d34109e46b799706b6f44944134f1b817
4
+ data.tar.gz: 3780dcddba54316cf7cb97224f7dc7a187195904a3f21cc430a017c03d663387
5
5
  SHA512:
6
- metadata.gz: 3b41c024be368fb48a31c479a07362040e5165dd965eb60d7a9c805dbae8be1f23f16a9473922eb75965cf02ffff99beb35a9c8f27485b435e0658410abba00f
7
- data.tar.gz: 193ee4fe30508c89f8c3ee548b5ab6d4839c57afacac7ef02e9aa0d0fb71c1886f87e85a2d659af03551c63c23797af7c6d54260b7be2095e74f69ca194852ce
6
+ metadata.gz: 786d469a57422f169e2980a4b0f80eb4ec857081f51b2c56ac87e070abd118b4245f537457de06058ef32ea394742e9bcb3cd106c7d3408b51a0aab8a622a260
7
+ data.tar.gz: 7b70ac096f7d53171b5aebcafc6605426e80ee598cddabb70c520b689cc07fadbaa22bda3d2bd9f6a748587cc6ce11246c3a79f50125ea102cf561ed66bfc353
data/CHANGELOG.md CHANGED
@@ -1,6 +1,17 @@
1
1
  # CHANGELOG
2
2
 
3
- ## 1.8.0 (2024-09-30)
3
+ ## 3.6.1 (2024-10-03)
4
+
5
+ ### Library changes
6
+
7
+ * Mark as ractor-safe ([#2041](https://github.com/ruby/rbs/pull/2041))
8
+
9
+ ### Miscellaneous
10
+
11
+ * Omit IOConsoleTest with Windows platform ([#2044](https://github.com/ruby/rbs/pull/2044))
12
+ * Recover `$stdout` after test ([#2042](https://github.com/ruby/rbs/pull/2042))
13
+
14
+ ## 3.6.0 (2024-09-30)
4
15
 
5
16
  Nothing changed since `3.6.0.pre.3`.
6
17
 
@@ -3,6 +3,9 @@
3
3
  void
4
4
  Init_rbs_extension(void)
5
5
  {
6
+ #ifdef HAVE_RB_EXT_RACTOR_SAFE
7
+ rb_ext_ractor_safe(true);
8
+ #endif
6
9
  rbs__init_constants();
7
10
  rbs__init_location();
8
11
  rbs__init_parser();
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.6.0"
4
+ VERSION = "3.6.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbs
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.6.0
4
+ version: 3.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Soutaro Matsumoto
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-09-30 00:00:00.000000000 Z
11
+ date: 2024-10-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: logger
@@ -532,7 +532,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
532
532
  - !ruby/object:Gem::Version
533
533
  version: '0'
534
534
  requirements: []
535
- rubygems_version: 3.5.17
535
+ rubygems_version: 3.5.11
536
536
  signing_key:
537
537
  specification_version: 4
538
538
  summary: Type signature for Ruby.