Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.25.0"
".": "0.26.0"
}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion neuralmind/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
from .trace import RetrievalTrace
from .watcher import FileActivityWatcher

__version__ = "0.25.0"
__version__ = "0.26.0"
__all__ = [
"NeuralMind",
"GraphEmbedder",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down