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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/rbs/collection/config/lockfile_generator.rb +2 -2
- data/lib/rbs/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 625eb3f7213f91b7ded108fcb35f84120cdf30f269dd2db324ca88da0b82f79a
|
|
4
|
+
data.tar.gz: 5efcce6237bd7e9135916d67c32746f72e319fa0c6ae2abeeda6173cf9f4786f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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'
|
|
188
|
-
# set
|
|
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
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.
|
|
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.
|
|
580
|
+
rubygems_version: 4.0.6
|
|
581
581
|
specification_version: 4
|
|
582
582
|
summary: Type signature for Ruby.
|
|
583
583
|
test_files: []
|