Skip to content

Commit bce2494

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

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.28.0] - 2026-02-07
11+
12+
### Added
13+
14+
- **Ollama/LM Studio Endpoint Prompt**: `grepai init` now prompts for custom Ollama/LM Studio endpoint URL during initialization (#111) - @yoanbernabeu
15+
- **Content-Addressed Embedding Deduplication**: Skip re-embedding unchanged chunks using content hashing, reducing indexing time and API calls (#112) - @tinker495
16+
- **Nix Release Automation**: Automate `flake.nix` version and vendorHash update in the release GitHub Actions workflow (#117) - @yoanbernabeu
17+
18+
### Fixed
19+
20+
- **UTF-8 Chunk Boundaries**: Align chunk boundaries to valid UTF-8 rune starts to prevent splitting multi-byte characters (#116) - @yoanbernabeu
21+
1022
## [0.27.0] - 2026-02-04
1123

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

497509
- Initial public release
498510

499-
[Unreleased]: https://github.com/yoanbernabeu/grepai/compare/v0.27.0...HEAD
511+
[Unreleased]: https://github.com/yoanbernabeu/grepai/compare/v0.28.0...HEAD
512+
[0.28.0]: https://github.com/yoanbernabeu/grepai/compare/v0.27.0...v0.28.0
500513
[0.27.0]: https://github.com/yoanbernabeu/grepai/compare/v0.26.0...v0.27.0
501514
[0.26.0]: https://github.com/yoanbernabeu/grepai/compare/v0.25.2...v0.26.0
502515
[0.25.2]: https://github.com/yoanbernabeu/grepai/compare/v0.25.1...v0.25.2

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.27.0" } = Astro.props;
6+
const { version = "0.28.0" } = Astro.props;
77
88
// Fetch GitHub stats at build time for SSR fallback
99
let stars = 750;

flake.nix

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

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

1515
mkGrepai = pkgs: pkgs.buildGoModule {
1616
pname = "grepai";

0 commit comments

Comments
 (0)