From 9433065a57633a3dde91213a2cb0b2f5ef6bf8a9 Mon Sep 17 00:00:00 2001 From: semantic-release Date: Tue, 8 Apr 2025 16:27:36 +0000 Subject: [PATCH] chore(release): 0.12.2 [skip ci] --- CHANGELOG.md | 11 +++++++++++ pyproject.toml | 2 +- src/basic_memory/__init__.py | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ceacbc18..4bec97d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ # CHANGELOG +## v0.12.2 (2025-04-08) + +### Bug Fixes + +- Utf8 for all file reads/write/open instead of default platform encoding + ([#91](https://github.com/basicmachines-co/basic-memory/pull/91), + [`2934176`](https://github.com/basicmachines-co/basic-memory/commit/29341763318408ea8f1e954a41046c4185f836c6)) + +Signed-off-by: phernandez + + ## v0.12.1 (2025-04-07) ### Bug Fixes diff --git a/pyproject.toml b/pyproject.toml index e81d18e5..66894da0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "basic-memory" -version = "0.12.1" +version = "0.12.2" 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 802f9bea..498f41a1 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.12.1" +__version__ = "0.12.2"