diff --git a/brain-bar/bundle/Info.plist b/brain-bar/bundle/Info.plist index 07b5238c..12382075 100644 --- a/brain-bar/bundle/Info.plist +++ b/brain-bar/bundle/Info.plist @@ -9,11 +9,11 @@ CFBundleIdentifier com.brainlayer.brainbar CFBundleVersion - 1.5.24 + 1.5.25 CFBundleShortVersionString - 1.5.24 + 1.5.25 BrainLayerReleaseVersion - 1.5.24 + 1.5.25 CFBundlePackageType APPL CFBundleExecutable diff --git a/pyproject.toml b/pyproject.toml index cbcf6ff3..6525a7b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "brainlayer" -version = "1.5.24" +version = "1.5.25" description = "Persistent memory MCP server for AI agents — 17 tools, semantic search, knowledge graph, on-device SQLite" license = {text = "Apache-2.0"} readme = "README.md" diff --git a/server.json b/server.json index 9669edf4..aad79fc0 100644 --- a/server.json +++ b/server.json @@ -3,7 +3,7 @@ "name": "io.github.etanhey/brainlayer", "title": "BrainLayer", "description": "Persistent memory for AI agents \u2014 local-first semantic search, knowledge graph, and 17 MCP tools with ToolAnnotations. One SQLite file, no cloud, no API keys.", - "version": "1.5.24", + "version": "1.5.25", "websiteUrl": "https://brainlayer.etanheyman.com", "repository": { "url": "https://github.com/EtanHey/brainlayer", @@ -14,7 +14,7 @@ "registryType": "pypi", "registryBaseUrl": "https://pypi.org", "identifier": "brainlayer", - "version": "1.5.24", + "version": "1.5.25", "runtimeHint": "pipx", "transport": { "type": "stdio" diff --git a/src/brainlayer/__init__.py b/src/brainlayer/__init__.py index db65c3bc..282762b5 100644 --- a/src/brainlayer/__init__.py +++ b/src/brainlayer/__init__.py @@ -2,7 +2,7 @@ from __future__ import annotations -__version__ = "1.5.24" +__version__ = "1.5.25" # Git sha the distributed package was built from; stamped by the release build, None in a source tree. # scripts/sprint_gate.py reads it in "keg" mode to prove the served package is the code under test. # No runtime `str | None` annotation: launchd/install.sh imports this under /usr/bin/python3 (3.9).