git-pkgs 0.3.0 → 0.4.0

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: 6152060237bbc1d9902da8e721bb23cfeaed46bbe2f5241e848aa0853d906710
4
- data.tar.gz: 5eebb36bd3eed487a100ddc8d3ef4c88cb0cdb28734f777d6fbfbd267f87f43e
3
+ metadata.gz: 794ba02ad93776f2d013177ae9b6cc8574788b84d9a51ea05e4e1db6a18399c5
4
+ data.tar.gz: 8a1d4e1fc30f73add57a69a9f4f29fa3ae3883fe73350b8d6121217dd24a6592
5
5
  SHA512:
6
- metadata.gz: b2192d675dd23a3a2c69fc4de998070db17ac05004842855b1fbd1d5b5b148d8063db93db3d84e4e0bbcf42f5d33a173180f641e3309241f7d83e04615c5ba9a
7
- data.tar.gz: cd7cfbe811f2a809ef428452708b18d1842ef2898d4b78c55e6373773b50546b215ec2dc43591ed4252d20595973ad060581dba72cc1400145068f55294655c4
6
+ metadata.gz: d5204cc1a63d3838322e465d70ac1a16e8cf215e193e15baf8425c1f88ec40affd9ceb0647a821cfa9a2384dc684a3c912baf32ac960352a8591c6105777a210
7
+ data.tar.gz: b6b6b47009f511022f1e824671a3ff47a654a8d4bb128ec933371c13e65106952b8c5322db2914c5b3d4d924206f09d0f6264e6457fccfc64b2518e1f86cfdcb
data/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.4.0] - 2026-01-04
4
+
5
+ - `git pkgs where` command to find where a package is declared in manifest files
6
+ - `git pkgs diff-driver` command for semantic lockfile diffs in `git diff`
7
+ - Ruby 4.0 support
8
+ - Fix branch name retrieval and final snapshot storage in `git pkgs init`
9
+ - Fix `git pkgs info` snapshot coverage output when zero snapshots
10
+ - Fix manifest file pattern matching for wildcard characters
11
+ - Fix co-author name parsing in `git pkgs blame`
12
+
1
13
  ## [0.3.0] - 2026-01-03
2
14
 
3
15
  - Pager support for long output (respects `GIT_PAGER`, `core.pager`, `PAGER`)
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,27 @@
1
+ # Contributing
2
+
3
+ ## Setup
4
+
5
+ ```bash
6
+ git clone https://github.com/andrew/git-pkgs
7
+ cd git-pkgs
8
+ bin/setup
9
+ ```
10
+
11
+ ## Running tests
12
+
13
+ ```bash
14
+ bundle exec rake test
15
+ ```
16
+
17
+ ## Pull requests
18
+
19
+ 1. Fork the repo
20
+ 2. Create a branch
21
+ 3. Make your changes
22
+ 4. Run tests
23
+ 5. Open a PR
24
+
25
+ ## Reporting bugs
26
+
27
+ Open an issue with steps to reproduce.