diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b5f714f..4a8e97c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.9" + ".": "0.1.10" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 11a0efa..4dba8fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [0.1.10](https://github.com/vineethkrishnan/clearpr/compare/v0.1.9...v0.1.10) (2026-06-14) + + +### Features + +* **memory:** add local embedding provider via transformers.js ([#95](https://github.com/vineethkrishnan/clearpr/issues/95)) ([cedcbc2](https://github.com/vineethkrishnan/clearpr/commit/cedcbc2cdaf6bf4c0bb7a576289ec0dc9f54044e)) + + +### Bug Fixes + +* **ai-review:** don't fail the whole review when inline lines can't anchor ([#99](https://github.com/vineethkrishnan/clearpr/issues/99)) ([b67aed2](https://github.com/vineethkrishnan/clearpr/commit/b67aed2941c1a75d12554ce543074cccceadbe7e)) +* **docker:** use glibc base image so local embeddings load ([#97](https://github.com/vineethkrishnan/clearpr/issues/97)) ([d7ac07e](https://github.com/vineethkrishnan/clearpr/commit/d7ac07e89463b90bacfd6e27232f93f5c6556934)) + + +### Documentation + +* capture deployment gotchas (TLS defaults, app-key match, local embeddings) ([#98](https://github.com/vineethkrishnan/clearpr/issues/98)) ([b53fa8d](https://github.com/vineethkrishnan/clearpr/commit/b53fa8d1ca04c23df6c2f5dee4d6ca9ee2d935a3)) + ## [0.1.9](https://github.com/vineethkrishnan/clearpr/compare/v0.1.8...v0.1.9) (2026-06-13) diff --git a/package-lock.json b/package-lock.json index 1427fbd..faee5d1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "clearpr", - "version": "0.1.9", + "version": "0.1.10", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "clearpr", - "version": "0.1.9", + "version": "0.1.10", "license": "MIT", "dependencies": { "@anthropic-ai/sdk": "^0.104.1", diff --git a/package.json b/package.json index 39763d5..1f2048e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "clearpr", - "version": "0.1.9", + "version": "0.1.10", "description": "Self-hosted GitHub App that strips formatting noise from diffs and reviews code with AI", "author": "Vineeth N K", "private": true,