From d459913d37aaa1a079cba29d74cecf72f00a8318 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 12 Jun 2026 18:13:09 +0000 Subject: [PATCH] chore(main): release 0.26.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 12 ++++++++++++ neuralmind/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 945fbaf..c84411f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.25.0" + ".": "0.26.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 18f61e5..f7baf43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.26.0](https://github.com/dfrostar/neuralmind/compare/v0.25.0...v0.26.0) (2026-06-12) + + +### Features + +* self-improvement engine phases 1-2 — selector auto-tuning from the synapse signal ([#233](https://github.com/dfrostar/neuralmind/issues/233)) ([d1d622f](https://github.com/dfrostar/neuralmind/commit/d1d622fcd9721893143a001b016ccf4225701d06)) + + +### Documentation + +* mark v0.25.0 as the latest release on the landing page ([#231](https://github.com/dfrostar/neuralmind/issues/231)) ([edb5b05](https://github.com/dfrostar/neuralmind/commit/edb5b05d84a34b7d7a9ab0cd47f915ad07056cda)) + ## [0.25.0](https://github.com/dfrostar/neuralmind/compare/v0.24.0...v0.25.0) (2026-06-12) diff --git a/neuralmind/__init__.py b/neuralmind/__init__.py index 288f60e..74a5192 100644 --- a/neuralmind/__init__.py +++ b/neuralmind/__init__.py @@ -101,7 +101,7 @@ from .trace import RetrievalTrace from .watcher import FileActivityWatcher -__version__ = "0.25.0" +__version__ = "0.26.0" __all__ = [ "NeuralMind", "GraphEmbedder", diff --git a/pyproject.toml b/pyproject.toml index 43eae3b..731bdca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "neuralmind" -version = "0.25.0" +version = "0.26.0" description = "Persistent memory for AI coding agents. Your agent learns your codebase the way a senior engineer would — what files go together, what you usually edit next, what patterns matter. Works with Claude Code, Cursor, Cline, Continue, and any MCP-compatible agent. 100% local. Side effect: 40-70x cheaper code questions." readme = "README.md" license = "MIT"