Compare commits

...

4 Commits

Author SHA1 Message Date
semantic-release 6e4a53cdfa chore(release): 0.2.11 [skip ci] 2025-02-14 04:25:18 +00:00
phernandez 2e215fe83c fix: ci installer app fix #37 2025-02-13 22:23:40 -06:00
semantic-release b546941779 chore(release): 0.2.10 [skip ci] 2025-02-14 04:17:24 +00:00
phernandez 29a259421a fix: fix build on github ci for app installer 2025-02-13 22:14:05 -06:00
4 changed files with 26 additions and 10 deletions
+4 -1
View File
@@ -78,7 +78,10 @@ jobs:
- name: Build macOS installer
run: |
cd installer && uv run python setup.py bdist_mac
cd installer
uv venv
uv pip install -e "..[dev]"
uv run python setup.py bdist_mac
xattr -dr com.apple.quarantine "build/Basic Memory Installer.app"
- name: Zip macOS installer
+16
View File
@@ -1,6 +1,22 @@
# CHANGELOG
## v0.2.11 (2025-02-14)
### Bug Fixes
- Ci installer app fix #37
([`2e215fe`](https://github.com/basicmachines-co/basic-memory/commit/2e215fe83ca421b921186c7f1989dc2cb5cca278))
## v0.2.10 (2025-02-14)
### Bug Fixes
- Fix build on github ci for app installer
([`29a2594`](https://github.com/basicmachines-co/basic-memory/commit/29a259421a0ccb10cfa68e3707eaa506ad5e55c0))
## v0.2.9 (2025-02-14)
+5 -8
View File
@@ -1,21 +1,18 @@
from cx_Freeze import setup, Executable
import sys
# Build options for all platforms
# Build options for all platforms - keep it simple and don't exclude too much
build_exe_options = {
"packages": ["json", "pathlib"],
"excludes": [
"tkinter",
"unittest",
"email",
"html",
"http",
"xml",
"pydoc",
"_tkinter",
"test"
],
"include_msvcr": False,
# Control file copying behavior
"copy_dependent_files": False,
"create_library_zip": True,
"copy_to_same_dir": False,
}
# Platform-specific options
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "basic-memory"
version = "0.2.9"
version = "0.2.11"
description = "Local-first knowledge management combining Zettelkasten with knowledge graphs"
readme = "README.md"
requires-python = ">=3.12.1"