rbs 3.10.3 → 3.10.4

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: e6e0db54a38d2913fa0906614617c4368f65a6c5f9dd7870657c4fd8579c691c
4
- data.tar.gz: fcbf327995545ff2035913dee84a0d9946b8bf119cc79ac8a4f2dfaa5ff8dbef
3
+ metadata.gz: 625eb3f7213f91b7ded108fcb35f84120cdf30f269dd2db324ca88da0b82f79a
4
+ data.tar.gz: 5efcce6237bd7e9135916d67c32746f72e319fa0c6ae2abeeda6173cf9f4786f
5
5
  SHA512:
6
- metadata.gz: 1a0ae715c21b03279d3cb73ff51f57cc77bc6622c04c88ddb0f8a932188b9112854a42999941739ea59a475fb390325cc320b965923be5803fb77b90da3893b1
7
- data.tar.gz: 9f2c5527c283046809b8d20cf37dca6efe41cd77b7a5b796a0eea8a45dae03f1813f65356b5fcd3aa7493ed64ce4c6ba518e98b1f1d2624a904aa448506b829c
6
+ metadata.gz: 895df7b19ee64fcf71291cd06e5487c3e87e30fbdaae13b0ba970dba0c3544d8bedbeef08775e46efe224a0d923393520f9efd0b0b8144dd4bf73230114eb6b7
7
+ data.tar.gz: d533dfbc071c697297670af31c3d28482f9db46948b3f94404b7797552e981922b82d7ca34da5501c49f0501d51d079706e4c1b0f660ce248babc70dcec5215b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 3.10.4 (2026-03-25)
4
+
5
+ ### Library changes
6
+
7
+ #### rbs collection
8
+
9
+ * [Backport] [3.10] Fix: pathname not written to lockfile. ([#2896](https://github.com/ruby/rbs/pull/2896))
10
+
3
11
  ## 3.10.3 (2026-01-30)
4
12
 
5
13
  This is a minor fix around the dependency to `tsort`.
@@ -184,8 +184,8 @@ module RBS
184
184
  lockfile.gems[name] = { name: name, version: "0", source: source }
185
185
  end
186
186
  return
187
- when 'set', 'pathname'
188
- # set and pathname is migrated to core from stdlib.
187
+ when 'set'
188
+ # set is migrated to core from stdlib.
189
189
  RBS.logger.info {
190
190
  from = from_gem || "rbs_collection.yaml"
191
191
  "`#{name}` is a part of the Ruby core library. The dependency to the library can be safely deleted from #{from}."
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.10.3"
4
+ VERSION = "3.10.4"
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: 3.10.3
4
+ version: 3.10.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Soutaro Matsumoto
@@ -577,7 +577,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
577
577
  - !ruby/object:Gem::Version
578
578
  version: '0'
579
579
  requirements: []
580
- rubygems_version: 4.0.2
580
+ rubygems_version: 4.0.6
581
581
  specification_version: 4
582
582
  summary: Type signature for Ruby.
583
583
  test_files: []