hiiro 0.1.268 → 0.1.269
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 +1 -22
- data/lib/hiiro/tasks.rb +5 -0
- data/lib/hiiro/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: cc17d3e06a4cad39900e4177955804bae129678d2e6fe541b1a6db62fe826de5
|
|
4
|
+
data.tar.gz: 51d49a5d48278f7c3c7bfadd9015afdbf8abb444c82a49dcac9bd003e37ca963
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 10f0a4642d176fc3eab56a42d61f68f3667e03ad2d0ac84bfd6209389a3fbffa44b6d96e18cf5e715c23d8a320c738cf221afe453055621ad9b078c8b054d798
|
|
7
|
+
data.tar.gz: fce55f581027ae90073864337f92d94434fe5e60982184fd3a6929b70d39ea5805f122da5f35ada08c0f9edc160bc84be8012eb2f5c8fa6c543e95ecaf7d083f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,22 +1 @@
|
|
|
1
|
-
|
|
2
|
-
# Changelog
|
|
3
|
-
|
|
4
|
-
## [0.1.268] - 2026-03-20
|
|
5
|
-
|
|
6
|
-
### Fixed
|
|
7
|
-
- Notify: Disable window-unlinked hook
|
|
8
|
-
|
|
9
|
-
## [0.1.267] - 2026-03-20
|
|
10
|
-
|
|
11
|
-
### Fixed
|
|
12
|
-
- Queue: Skip markdown headers when auto-generating prompt names from content
|
|
13
|
-
- PR: Include tags in oneline PR display format
|
|
14
|
-
|
|
15
|
-
## [0.1.266] - 2026-03-19
|
|
16
|
-
|
|
17
|
-
### Added
|
|
18
|
-
- Queue: Support app and dir frontmatter for working directory resolution
|
|
19
|
-
|
|
20
|
-
### Fixed
|
|
21
|
-
- PR: Dependency tracking for pull requests
|
|
22
|
-
```
|
|
1
|
+
Done. Updated CHANGELOG.md with v0.1.269 entry at the top, referencing the fix for the sparse-checkout command help text from commit fe78802.
|
data/lib/hiiro/tasks.rb
CHANGED
|
@@ -772,6 +772,11 @@ class Hiiro
|
|
|
772
772
|
flag(:disable, short: 'd', desc: 'disable sparse checkout on the current task worktree')
|
|
773
773
|
end
|
|
774
774
|
|
|
775
|
+
if opts.help
|
|
776
|
+
puts opts.help_text
|
|
777
|
+
exit 1
|
|
778
|
+
end
|
|
779
|
+
|
|
775
780
|
if opts.list
|
|
776
781
|
groups = Hiiro::SparseGroups.load
|
|
777
782
|
if groups.empty?
|
data/lib/hiiro/version.rb
CHANGED