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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7eecd997945d2c597a4b6e9c28ec2d8b485871ae91f304695cddeec40414c605
4
- data.tar.gz: ccb6d7acb90b1d794c650ddad420d7c113baa9e8819ae2f2ec205e1fec6cf652
3
+ metadata.gz: 54abd9eef43f8a597ac942eb693f5e5605125a44ad4e8ffb40569432757aaa26
4
+ data.tar.gz: 7d9ee236bb5d97ba7ed6dea6573e787bed18589fef834df137037d986928d441
5
5
  SHA512:
6
- metadata.gz: 0f8a631772992bfc9f61d9a8ea25c16e993459f1792441a963d7e2ff1563b3bcce9ce4bbf213225ebc0eb7e03527be0a316599417b34832b24056e30649e7547
7
- data.tar.gz: 78a971962958be80d9936c0606329a54b5a6a4ec6cf4a8185f07d1b0bf3d61c9d504eba8e9bebd6e07627e71feb89ba968ab216e8ace23852fde2200390a7623
6
+ metadata.gz: 28dc7b4d806715e615aafcb3dcfddd4fb9e10ceeb850f6a671f6de6d6ea903d71d596ddb146aa0692d952475ee3a7cb11c34c9e8c6d5fe2973ad9f3806424d6e
7
+ data.tar.gz: 49090e51d98f87d8d957596cdc06381fd85ad15d2b74a5c7afcfe228b63957076a2a65749f01ce94a2cf2bfb9e03aab241f273a2b5782f4d268b452d5ab2f18e
data/CHANGELOG.md CHANGED
@@ -1 +1,15 @@
1
- Done. CHANGELOG.md updated with v0.1.266 section at the top.
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
@@ -1,3 +1,3 @@
1
1
  class Hiiro
2
- VERSION = "0.1.266"
2
+ VERSION = "0.1.267"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hiiro
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.266
4
+ version: 0.1.267
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua Toyota