Skip to content

Commit fe996f4

Browse files
yoanbernabeuclaude
andcommitted
chore(release): bump version to 0.29.0
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent a26d4fc commit fe996f4

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.29.0] - 2026-02-08
11+
12+
### Added
13+
14+
- **Git Worktree Detection and Auto-Init**: Automatically detect git worktrees and initialize grepai in the main worktree root (#114) - @tinker495
15+
- **GOB File Locking for Cross-Process Safety**: Add file locking to GOB store to prevent data corruption when multiple processes access the same index (#113) - @tinker495
16+
17+
### Documentation
18+
19+
- **Git Worktree Support Documentation**: Add documentation page for git worktree support (#126) - @yoanbernabeu
20+
1021
## [0.28.0] - 2026-02-07
1122

1223
### Added
@@ -508,7 +519,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
508519

509520
- Initial public release
510521

511-
[Unreleased]: https://github.com/yoanbernabeu/grepai/compare/v0.28.0...HEAD
522+
[Unreleased]: https://github.com/yoanbernabeu/grepai/compare/v0.29.0...HEAD
523+
[0.29.0]: https://github.com/yoanbernabeu/grepai/compare/v0.28.0...v0.29.0
512524
[0.28.0]: https://github.com/yoanbernabeu/grepai/compare/v0.27.0...v0.28.0
513525
[0.27.0]: https://github.com/yoanbernabeu/grepai/compare/v0.26.0...v0.27.0
514526
[0.26.0]: https://github.com/yoanbernabeu/grepai/compare/v0.25.2...v0.26.0

docs/src/components/homepage/HeroAnimated.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ interface Props {
33
version?: string;
44
}
55
6-
const { version = "0.28.0" } = Astro.props;
6+
const { version = "0.29.0" } = Astro.props;
77
88
// Fetch GitHub stats at build time for SSR fallback
99
let stars = 750;

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
1111
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
1212

13-
version = "0.28.0";
13+
version = "0.29.0";
1414

1515
mkGrepai = pkgs: pkgs.buildGoModule {
1616
pname = "grepai";
1717
inherit version;
1818
src = ./.;
1919

20-
vendorHash = "sha256-doGLaRDqD2c3MvUGkeBHuQ4rmnoUemqb1IhEwy+7G40=";
20+
vendorHash = "sha256-uHsx6l7k7ur295+DFGNUAvRG3j8K6uOKipyVCNtd0hs=";
2121

2222
ldflags = [
2323
"-s"

0 commit comments

Comments
 (0)