Compare commits

...

2 Commits

Author SHA1 Message Date
semantic-release e48deaeecf chore(release): 0.2.12 [skip ci] 2025-02-14 04:33:35 +00:00
phernandez 854cf8302e fix: fix cx_freeze options for installer 2025-02-13 22:31:50 -06:00
3 changed files with 14 additions and 5 deletions
+8
View File
@@ -1,6 +1,14 @@
# CHANGELOG
## v0.2.12 (2025-02-14)
### Bug Fixes
- Fix cx_freeze options for installer
([`854cf83`](https://github.com/basicmachines-co/basic-memory/commit/854cf8302e2f83578030db05e29b8bdc4348795a))
## v0.2.11 (2025-02-14)
### Bug Fixes
+5 -4
View File
@@ -9,10 +9,11 @@ build_exe_options = {
"pydoc",
"test"
],
# Control file copying behavior
"copy_dependent_files": False,
"create_library_zip": True,
"copy_to_same_dir": False,
# Prevent duplication across dirs
"bin_includes": [],
"bin_excludes": [],
"zip_include_packages": ["*"],
"zip_exclude_packages": [],
}
# Platform-specific options
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "basic-memory"
version = "0.2.11"
version = "0.2.12"
description = "Local-first knowledge management combining Zettelkasten with knowledge graphs"
readme = "README.md"
requires-python = ">=3.12.1"