File tree Expand file tree Collapse file tree 3 files changed +19
-3
lines changed
docs/src/components/homepage Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 0.30.0] - 2026-02-08
11+
12+ ### Added
13+
14+ - ** Multi-Worktree Watch and Daemon Support** : Worktree-aware daemon PID management and multi-worktree parallel watching via errgroup (#115 ) - @tinker495
15+ - Worktree-specific PID/ready/log files in daemon package
16+ - ` discoverWorktreesForWatch() ` for automatic linked worktree detection with auto-init
17+ - ` watchProject() ` extracted for single-project watch loop
18+ - Platform-specific liveness detection (pipe on Unix, poll on Windows)
19+
20+ ### Fixed
21+
22+ - ** Lock File Handle Leak** : Fix file handle leak in ` WriteWorktreePIDFile ` (defer close after lock) (#115 ) - @tinker495
23+ - ** Deduplicate Watch Loop** : Remove duplicated no-worktree path to use ` watchProject() ` instead of inline copy (#115 ) - @tinker495
24+
1025## [ 0.29.0] - 2026-02-08
1126
1227### Added
@@ -519,7 +534,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
519534
520535- Initial public release
521536
522- [ Unreleased ] : https://github.com/yoanbernabeu/grepai/compare/v0.29.0...HEAD
537+ [ Unreleased ] : https://github.com/yoanbernabeu/grepai/compare/v0.30.0...HEAD
538+ [ 0.30.0 ] : https://github.com/yoanbernabeu/grepai/compare/v0.29.0...v0.30.0
523539[ 0.29.0 ] : https://github.com/yoanbernabeu/grepai/compare/v0.28.0...v0.29.0
524540[ 0.28.0 ] : https://github.com/yoanbernabeu/grepai/compare/v0.27.0...v0.28.0
525541[ 0.27.0 ] : https://github.com/yoanbernabeu/grepai/compare/v0.26.0...v0.27.0
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ interface Props {
33 version? : string ;
44}
55
6- const { version = " 0.29 .0" } = Astro .props ;
6+ const { version = " 0.30 .0" } = Astro .props ;
77
88// Fetch GitHub stats at build time for SSR fallback
99let stars = 750 ;
Original file line number Diff line number Diff line change 1010 supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ] ;
1111 forAllSystems = nixpkgs . lib . genAttrs supportedSystems ;
1212
13- version = "0.29 .0" ;
13+ version = "0.30 .0" ;
1414
1515 mkGrepai = pkgs : pkgs . buildGoModule {
1616 pname = "grepai" ;
You can’t perform that action at this time.
0 commit comments