philiprehberger-dependency_graph 0.1.2 → 0.1.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: 5de9557ee6fc913e4366fef841bc95146df815d0e709bb0a2d24aab5b709b38d
4
- data.tar.gz: 1004edd6a50555bb137fd4e737e32d17a214664d5866659b33b0ee6b88f41d4d
3
+ metadata.gz: 6a409f5f397000d0c6d9e5e24c3ed4cc4bfb3e91cd8ae177df096b2f5c7cdf1c
4
+ data.tar.gz: e8b2fc8d054cf70f4c5285930c94533362d3f3ac45e58febc3afe2ff2fdd66a7
5
5
  SHA512:
6
- metadata.gz: b5903697f6d7118aba5cfd3dc2fc52a4cb11bdd3ea55f2060e3bbc605f4d60e79f1386e0a74310e042508473b34cb3f0b38a9c4770e634fd999252ed3e711300
7
- data.tar.gz: 8e26aaa415eabaa02e533c1acfc854f8a1f86ca773a4de324560d9d30fa31391faa46d0b3c197582b094bda537cbe36324514f536ac24f80848443da569db50e
6
+ metadata.gz: 88efac2545aed5a1faf1817f21708bb0c46243d93337773aa537a1cf6514c8928ced029a4d0206d72a8644c79a0ff2944e7f398d5d5816330780bb8a3335a19b
7
+ data.tar.gz: 1ac86a7caf2b5e04b4f102a3ac7682029bb7e366c0c90895fdeb48f07bc0e0c953bebda0c126048e4a404c12e1effcf51582eb93fa07dcbe1ac954f5060cdc35
data/CHANGELOG.md CHANGED
@@ -6,7 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
8
  ## [Unreleased]
9
- n## [0.1.2] - 2026-03-22
9
+
10
+ ## [0.1.4] - 2026-03-24
11
+
12
+ ### Fixed
13
+ - Remove inline comments from Development section to match template
14
+
15
+ ## [0.1.3] - 2026-03-22
16
+
17
+ ### Added
18
+ - Expand test coverage to 30+ examples with edge cases for empty graphs, single nodes, disconnected components, self-cycles, long chains, string/integer keys, and chaining
19
+
20
+ ## [0.1.2] - 2026-03-22
10
21
 
11
22
  ### Changed
12
23
  - Version bump for republishing
data/README.md CHANGED
@@ -88,8 +88,8 @@ graph.resolve # => [:a, :b, :c]
88
88
 
89
89
  ```bash
90
90
  bundle install
91
- bundle exec rspec # Run tests
92
- bundle exec rubocop # Check code style
91
+ bundle exec rspec
92
+ bundle exec rubocop
93
93
  ```
94
94
 
95
95
  ## License
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Philiprehberger
4
4
  module DependencyGraph
5
- VERSION = '0.1.2'
5
+ VERSION = '0.1.4'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: philiprehberger-dependency_graph
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Philip Rehberger
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-03-23 00:00:00.000000000 Z
11
+ date: 2026-03-25 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Build and resolve dependency graphs using topological sort, detect cycles,
14
14
  and generate parallel execution batches for concurrent task scheduling.