diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f066bc9..e55c9bbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,25 @@ # CHANGELOG +## v0.4.0 (2025-02-16) + +### Features + +- Import chatgpt conversation data ([#9](https://github.com/basicmachines-co/basic-memory/pull/9), + [`56f47d6`](https://github.com/basicmachines-co/basic-memory/commit/56f47d6812982437f207629e6ac9a82e0e56514e)) + +Co-authored-by: phernandez + +- Import claude.ai data ([#8](https://github.com/basicmachines-co/basic-memory/pull/8), + [`a15c346`](https://github.com/basicmachines-co/basic-memory/commit/a15c346d5ebd44344b76bad877bb4d1073fcbc3b)) + +Import Claude.ai conversation and project data to basic-memory Markdown format. + +--------- + +Co-authored-by: phernandez + + ## v0.3.0 (2025-02-15) ### Bug Fixes diff --git a/pyproject.toml b/pyproject.toml index 671310e5..686daacd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "basic-memory" -version = "0.3.0" +version = "0.4.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 2519f05f..1b9d5d8e 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.3.0" +__version__ = "0.4.0"