From 3d45227b727e47ef602ee23daa401e0e7136a558 Mon Sep 17 00:00:00 2001 From: semantic-release Date: Sat, 29 Mar 2025 00:19:40 +0000 Subject: [PATCH] chore(release): 0.11.0 [skip ci] --- CHANGELOG.md | 37 ++++++++++++++++++++++++++++++++++++ pyproject.toml | 2 +- src/basic_memory/__init__.py | 2 +- 3 files changed, 39 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 53e13041..1bb21939 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,43 @@ # CHANGELOG +## v0.11.0 (2025-03-29) + +### Bug Fixes + +- Just delete db for reset db instead of using migrations. + ([#65](https://github.com/basicmachines-co/basic-memory/pull/65), + [`0743ade`](https://github.com/basicmachines-co/basic-memory/commit/0743ade5fc07440f95ecfd816ba7e4cfd74bca12)) + +Signed-off-by: phernandez + +- Make logs for each process - mcp, sync, cli + ([#64](https://github.com/basicmachines-co/basic-memory/pull/64), + [`f1c9570`](https://github.com/basicmachines-co/basic-memory/commit/f1c95709cbffb1b88292547b0b8f29fcca22d186)) + +Signed-off-by: phernandez + +### Documentation + +- Update broken "Multiple Projects" link in README.md + ([#55](https://github.com/basicmachines-co/basic-memory/pull/55), + [`3c68b7d`](https://github.com/basicmachines-co/basic-memory/commit/3c68b7d5dd689322205c67637dca7d188111ee6b)) + +### Features + +- Add bm command alias for basic-memory + ([#67](https://github.com/basicmachines-co/basic-memory/pull/67), + [`069c0a2`](https://github.com/basicmachines-co/basic-memory/commit/069c0a21c630784e1bf47d2b7de5d6d1f6fadd7a)) + +Signed-off-by: phernandez + +- Rename search tool to search_notes + ([#66](https://github.com/basicmachines-co/basic-memory/pull/66), + [`b278276`](https://github.com/basicmachines-co/basic-memory/commit/b27827671dc010be3e261b8b221aca6b7f836661)) + +Signed-off-by: phernandez + + ## v0.10.1 (2025-03-25) ### Bug Fixes diff --git a/pyproject.toml b/pyproject.toml index d79452f5..60bc35df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "basic-memory" -version = "0.10.1" +version = "0.11.0" description = "Local-first knowledge management combining Zettelkasten with knowledge graphs" readme = "README.md" requires-python = ">=3.12.1" diff --git a/src/basic_memory/__init__.py b/src/basic_memory/__init__.py index 31094340..43c43b87 100644 --- a/src/basic_memory/__init__.py +++ b/src/basic_memory/__init__.py @@ -1,3 +1,3 @@ """basic-memory - Local-first knowledge management combining Zettelkasten with knowledge graphs""" -__version__ = "0.10.1" +__version__ = "0.11.0"