Skip to content

Commit c6c3698

Browse files
Yoan Bernabeuclaude
andcommitted
chore(release): bump version to 0.32.0
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 5e3b827 commit c6c3698

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
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.32.0] - 2026-02-19
11+
12+
### Added
13+
14+
- **Synthetic & OpenRouter Providers**: Add Synthetic API and OpenRouter as new embedding providers (#106) - @Revaz-Goguadze
15+
- Synthetic API (`synthetic`): Cloud embedding via `https://api.synthetic.new` with `nomic-embed-text-v1.5` (768 dims)
16+
- OpenRouter (`openrouter`): Multi-provider gateway via `https://openrouter.ai/api/v1` with model selection (text-embedding-3-small, text-embedding-3-large, qwen3-embedding-8b)
17+
- Embedder factory pattern (`NewFromConfig`/`NewFromWorkspaceConfig`) centralizing provider initialization across CLI and MCP server
18+
- Interactive model selection for OpenRouter during `grepai init`
19+
- `--model` flag for non-interactive OpenRouter configuration
20+
1021
## [0.31.0] - 2026-02-13
1122

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

557568
- Initial public release
558569

559-
[Unreleased]: https://github.com/yoanbernabeu/grepai/compare/v0.31.0...HEAD
570+
[Unreleased]: https://github.com/yoanbernabeu/grepai/compare/v0.32.0...HEAD
571+
[0.32.0]: https://github.com/yoanbernabeu/grepai/compare/v0.31.0...v0.32.0
560572
[0.31.0]: https://github.com/yoanbernabeu/grepai/compare/v0.30.0...v0.31.0
561573
[0.30.0]: https://github.com/yoanbernabeu/grepai/compare/v0.29.0...v0.30.0
562574
[0.29.0]: https://github.com/yoanbernabeu/grepai/compare/v0.28.0...v0.29.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.31.0" } = Astro.props;
6+
const { version = "0.32.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.31.0";
13+
version = "0.32.0";
1414

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

0 commit comments

Comments
 (0)