rigor-module-graph 0.1.0 → 0.1.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 +4 -4
- data/CHANGELOG.md +22 -1
- data/lib/rigor/module_graph/cli.rb +1 -1
- data/lib/rigor/module_graph/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cf3abcab20d49807ed210e09aedba79d88b5ef2bbb1d96c15a95d5d06cf8806d
|
|
4
|
+
data.tar.gz: 5579a21f011ed0dddb58ed3c62dad92eb682920a3f5c92f5f9d63576d8b231ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: df1406e30ec2d1efcbb8f7fb884435f320fdc4911746189c5d9063f2c02980a458f4765c8a6707f8b229e0d03c8475bc8d0a153a95ee6c4fc3580da7e2a9456a
|
|
7
|
+
data.tar.gz: 0de9b8e511b698d3d8af731086a1df08890e72eda20254629d75f707ded01f367f5d536742fd8352269f2362f0b4a0f4ce295c6ab3de21b6b31a7ffd73f01c4f
|
data/CHANGELOG.md
CHANGED
|
@@ -17,6 +17,26 @@ Categories:
|
|
|
17
17
|
|
|
18
18
|
## [Unreleased]
|
|
19
19
|
|
|
20
|
+
## [0.1.1] — 2026-06-20
|
|
21
|
+
|
|
22
|
+
First Action-driven publish. The 0.1.0 release happened via the
|
|
23
|
+
CLI fallback before the rubygems.org Trusted Publisher
|
|
24
|
+
registration was in place; 0.1.1 is the first version to land
|
|
25
|
+
through `release.yml`.
|
|
26
|
+
|
|
27
|
+
The user-visible code surface is intentionally tiny: the major
|
|
28
|
+
correctness fix (namespaced association resolution), the
|
|
29
|
+
Stats / Reachability / Edge perf rewrites, the SHA-pinned
|
|
30
|
+
workflows, the docs split, and the MIT `LICENSE.txt` all
|
|
31
|
+
already shipped in 0.1.0.
|
|
32
|
+
|
|
33
|
+
### Changed
|
|
34
|
+
|
|
35
|
+
- `--version` / `-v` / `version` now prints
|
|
36
|
+
`rigor-module-graph X.Y.Z` instead of a bare `X.Y.Z`.
|
|
37
|
+
Matches the convention `bundler --version` and `gh --version`
|
|
38
|
+
use; bug reports pasted into chat are self-identifying.
|
|
39
|
+
|
|
20
40
|
## [0.1.0] — 2026-06-20
|
|
21
41
|
|
|
22
42
|
Initial release. Baseline shipping everything from the Phase 0
|
|
@@ -114,5 +134,6 @@ spike through Phase 5 (UML class diagram).
|
|
|
114
134
|
baseline and YJIT, and trailed baseline on Stats and
|
|
115
135
|
CycleDetector — recommendation stays YJIT.
|
|
116
136
|
|
|
117
|
-
[Unreleased]: https://github.com/nozomemein/rigor-module-graph/compare/v0.1.
|
|
137
|
+
[Unreleased]: https://github.com/nozomemein/rigor-module-graph/compare/v0.1.1...HEAD
|
|
138
|
+
[0.1.1]: https://github.com/nozomemein/rigor-module-graph/compare/v0.1.0...v0.1.1
|
|
118
139
|
[0.1.0]: https://github.com/nozomemein/rigor-module-graph/releases/tag/v0.1.0
|
|
@@ -66,7 +66,7 @@ module Rigor
|
|
|
66
66
|
stdout.puts USAGE
|
|
67
67
|
0
|
|
68
68
|
when "version", "-v", "--version"
|
|
69
|
-
stdout.puts Rigor::ModuleGraph::VERSION
|
|
69
|
+
stdout.puts "rigor-module-graph #{Rigor::ModuleGraph::VERSION}"
|
|
70
70
|
0
|
|
71
71
|
else
|
|
72
72
|
stderr.puts "rigor-module-graph: unknown command #{command.inspect}"
|