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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5b9be2e8029422795b2b8b9e8f13998f6aefc16923e11e166f7692910637eb81
4
- data.tar.gz: a723c08c549cb5368166de5971712f12d1cd5d06c142d176d842b43bd9ec6816
3
+ metadata.gz: cf3abcab20d49807ed210e09aedba79d88b5ef2bbb1d96c15a95d5d06cf8806d
4
+ data.tar.gz: 5579a21f011ed0dddb58ed3c62dad92eb682920a3f5c92f5f9d63576d8b231ad
5
5
  SHA512:
6
- metadata.gz: e0ea19766f2fa753a0b41fe6dd7eb9b7840b3ce70ca10a8b1b153e2d04633f7cb0a04d1b24f6481104b038ab240e6d26fa56d6a4a990f404e565ce0ddfa21cdf
7
- data.tar.gz: 82153c88b36de25bad1250d5f33c10b88d4a7c049d17112c750e4cf2596739407429f730048543e9c2bc7d0fe3551d877d6c6ee5275df780dceb4f1415742304
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.0...HEAD
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}"
@@ -5,6 +5,6 @@ module Rigor
5
5
  # an overview and Rigor::ModuleGraph::CLI for the CLI surface.
6
6
  module ModuleGraph
7
7
  # The installed gem version.
8
- VERSION = "0.1.0"
8
+ VERSION = "0.1.1"
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rigor-module-graph
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nozomi Hijikata