diff --git a/CHANGELOG.md b/CHANGELOG.md index c7788ea2..3f066bc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # CHANGELOG +## v0.3.0 (2025-02-15) + +### Bug Fixes + +- Refactor db schema migrate handling + ([`ca632be`](https://github.com/basicmachines-co/basic-memory/commit/ca632beb6fed5881f4d8ba5ce698bb5bc681e6aa)) + + ## v0.2.21 (2025-02-15) ### Bug Fixes @@ -8,6 +16,17 @@ - Fix osx installer github action ([`65ebe5d`](https://github.com/basicmachines-co/basic-memory/commit/65ebe5d19491e5ff047c459d799498ad5dd9cd1a)) +- Handle memory:// url format in read_note tool + ([`e080373`](https://github.com/basicmachines-co/basic-memory/commit/e0803734e69eeb6c6d7432eea323c7a264cb8347)) + +- Remove create schema from init_db + ([`674dd1f`](https://github.com/basicmachines-co/basic-memory/commit/674dd1fd47be9e60ac17508476c62254991df288)) + +### Features + +- Set version in var, output version at startup + ([`a91da13`](https://github.com/basicmachines-co/basic-memory/commit/a91da1396710e62587df1284da00137d156fc05e)) + ## v0.2.20 (2025-02-14) diff --git a/pyproject.toml b/pyproject.toml index a83fc390..671310e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "basic-memory" -version = "0.2.21" +version = "0.3.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 ded8872a..2519f05f 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.0.1" +__version__ = "0.3.0"