hiiro 0.1.266 → 0.1.267
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 +15 -1
- data/bin/h-pr +1 -1
- data/lib/hiiro/queue.rb +1 -1
- 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: 54abd9eef43f8a597ac942eb693f5e5605125a44ad4e8ffb40569432757aaa26
|
|
4
|
+
data.tar.gz: 7d9ee236bb5d97ba7ed6dea6573e787bed18589fef834df137037d986928d441
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28dc7b4d806715e615aafcb3dcfddd4fb9e10ceeb850f6a671f6de6d6ea903d71d596ddb146aa0692d952475ee3a7cb11c34c9e8c6d5fe2973ad9f3806424d6e
|
|
7
|
+
data.tar.gz: 49090e51d98f87d8d957596cdc06381fd85ad15d2b74a5c7afcfe228b63957076a2a65749f01ce94a2cf2bfb9e03aab241f273a2b5782f4d268b452d5ab2f18e
|
data/CHANGELOG.md
CHANGED
|
@@ -1 +1,15 @@
|
|
|
1
|
-
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.1.267] - 2026-03-20
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- Queue: Skip markdown headers when auto-generating prompt names from content
|
|
7
|
+
- PR: Include tags in oneline PR display format
|
|
8
|
+
|
|
9
|
+
## [0.1.266] - 2026-03-19
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- Queue: Support app and dir frontmatter for working directory resolution
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- PR: Dependency tracking for pull requests
|
data/bin/h-pr
CHANGED
|
@@ -417,7 +417,7 @@ class PinnedPRManager
|
|
|
417
417
|
line4 = tags_str ? "#{indent}#{tags_str}" : nil
|
|
418
418
|
|
|
419
419
|
if oneline
|
|
420
|
-
"#{line1} #{repo_label}#{title_str}"
|
|
420
|
+
"#{line1} #{repo_label}#{title_str}#{tags_str ? " #{tags_str}" : ""}"
|
|
421
421
|
else
|
|
422
422
|
[line1, line2, line3, line4].compact.join("\n")
|
|
423
423
|
end
|
data/lib/hiiro/queue.rb
CHANGED
|
@@ -345,7 +345,7 @@ class Hiiro
|
|
|
345
345
|
if name && !name.empty?
|
|
346
346
|
name = slugify(name)
|
|
347
347
|
else
|
|
348
|
-
content_lines = content.lines.drop_while { |l| l.strip.empty? || l.start_with?('---') || l.match?(/^\w+:/) }.first.to_s.strip
|
|
348
|
+
content_lines = content.lines.drop_while { |l| l.strip.empty? || l.start_with?('---') || l.match?(/^\w+:/) || l.start_with?('# ') }.first.to_s.strip
|
|
349
349
|
name = slugify(content_lines)
|
|
350
350
|
end
|
|
351
351
|
|
data/lib/hiiro/version.rb
CHANGED