hiiro 0.1.304 → 0.1.305

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: 7857e9098ddc0e017149cc2410a763e05ef783ade9770470f50641547a9404fd
4
- data.tar.gz: 345597405a5855955e94fa5e5f89d875d6a8c2feb6a5ff39942befc7cbb5168c
3
+ metadata.gz: 6b956aab961c66795c05d7217fd8ca961efe2568014e7a9ec3862baf0a4039ae
4
+ data.tar.gz: 563b6fc17833de0e87433d4ddb1db983985559152a1d3eab406b9f57910061cf
5
5
  SHA512:
6
- metadata.gz: 1d570ea40f7655e4f36190cca8e1147025f95af9fff8c0f869d656ddfd38ed58b489884bb7be086b89da6ccb51f186483d856ff757ead5ed92c503b8cb4a491d
7
- data.tar.gz: bdbe84cf4d538c42b56322bf026a9c7d55b4a5110bb0ebe608658b28cc39c472bce7933e23cbb62012596bec549236de2e592c4166d57c785ed1bb615d349d86
6
+ metadata.gz: 05f9e8916e724ab023f1e41a60e280c6ab87b6e9e4333a96a11e8a1d7c15fd88a3983a507da1e14fb9be974677eb9e07e29a54d669ccde25d500b78151b1b82c
7
+ data.tar.gz: dfac19aac75e42edc2a10ee87a521e9b3ac09b1badcbd8c684d64a15f06d6da47e264b20c53240497d277d1a73482a47cb22f734bc587ba654315f3968d8538c
data/CHANGELOG.md CHANGED
@@ -1,3 +1,66 @@
1
- Done. Updated CHANGELOG.md with v0.1.304 entry at the top, documenting the two changes since v0.1.302:
2
- - h-notify now uses a universal log instead of per-session logging
3
- - Todo output has been simplified
1
+ ```markdown
2
+ # Changelog
3
+
4
+ ## [0.1.305] - 2026-03-30
5
+
6
+ ### Changed
7
+ - Refactor: use delayed_update subcommand instead of direct update call
8
+ - Improve gem version matching regex in version check
9
+
10
+ ## [0.1.304] - 2026-03-30
11
+
12
+ ### Changed
13
+ - h-notify: use universal log instead of per-session logging
14
+ - Todo output simplified
15
+
16
+ ## [0.1.302] - 2026-03-30
17
+
18
+ ### Fixed
19
+ - Truncate output lines to terminal width in tasks plugin
20
+
21
+ ## [0.1.301]
22
+
23
+ ### Added
24
+ - Check version delayed update functionality
25
+
26
+ ### Changed
27
+ - h-claude: add verbose flags and refactor glob_path handling
28
+
29
+ ### Fixed
30
+ - Use exact session matching to prevent tmux prefix ambiguity
31
+
32
+ ## [0.1.300]
33
+
34
+ ### Added
35
+ - h-claude: fulltext search option for agents/commands/skills
36
+
37
+ ### Changed
38
+ - Refactor h-claude directory traversal and file globbing
39
+
40
+ ## [0.1.299]
41
+
42
+ ### Added
43
+ - h-pr open: support opening multiple PRs
44
+
45
+ ## [0.1.298]
46
+
47
+ ### Changed
48
+ - Use Pathname to walk up directory tree
49
+ - h-claude agents/commands/skills walk from pwd up to home
50
+
51
+ ## [0.1.297]
52
+
53
+ ### Added
54
+ - h rnext subcommand
55
+
56
+ ## [0.1.296]
57
+
58
+ ### Changed
59
+ - Refactor PR filter logic to pinned_pr_manager
60
+ - Move PR filter logic to Pr#matches_filters?
61
+
62
+ ## [0.1.295]
63
+
64
+ ### Changed
65
+ - Filter logic changes for PR management
66
+ ```
data/exe/h CHANGED
@@ -201,7 +201,7 @@ Hiiro.run(*ARGV, cwd: Dir.pwd, tasks: true) do
201
201
  versions = `rbenv versions --bare`.lines(chomp: true)
202
202
  mismatched = versions.reject do |ver|
203
203
  output = `RBENV_VERSION=\#{ver} rbenv exec gem list hiiro --exact 2>/dev/null`
204
- output.match?(/hiiro \\(#{Regexp.escape(expected)}\\)/)
204
+ output.match?(/hiiro \\([^)]*#{Regexp.escape(expected)}/)
205
205
  end
206
206
  if mismatched.empty?
207
207
  system('say', 'hiiro updated')
data/lib/hiiro/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Hiiro
2
- VERSION = "0.1.304"
2
+ VERSION = "0.1.305"
3
3
  end
data/script/publish CHANGED
@@ -200,4 +200,4 @@ else
200
200
  end
201
201
 
202
202
  puts ""
203
- system('./script/update')
203
+ system('h', 'delayed_update', new_version)
data/script/update CHANGED
@@ -1,11 +1,15 @@
1
1
  #!/bin/bash
2
2
 
3
+ NEW_VERSION=$1
4
+
3
5
  if rbenv which h
4
6
  then
5
7
  gem update hiiro
6
- h update
7
-
8
- h update -a
8
+ if [ -n "$NEW_VERSION" ]; then
9
+ h delayed_update "$NEW_VERSION"
10
+ else
11
+ h update -a
12
+ fi
9
13
  else
10
14
  gem install hiiro
11
15
  fi
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.304
4
+ version: 0.1.305
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua Toyota