Compare commits

...

5 Commits

Author SHA1 Message Date
semantic-release 70b2eb3a4a chore(release): 0.2.14 [skip ci] 2025-02-14 04:48:04 +00:00
phernandez 80cdecdbf0 Merge branch 'main' of github.com:basicmachines-co/basic-memory 2025-02-13 22:46:19 -06:00
phernandez 8dd923d5bc fix: try using symlinks in installer build 2025-02-13 22:46:12 -06:00
semantic-release 0cb429bfd3 chore(release): 0.2.13 [skip ci] 2025-02-14 04:43:01 +00:00
phernandez a15265783e fix: refactor release.yml installer 2025-02-13 22:41:30 -06:00
4 changed files with 33 additions and 16 deletions
+12 -8
View File
@@ -64,8 +64,15 @@ jobs:
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
pip install uv
- name: Create virtual env
run: |
uv venv
- name: Install dependencies
run: |
uv pip install -e .[dev]
- name: Install librsvg
run: brew install librsvg
@@ -78,11 +85,8 @@ jobs:
- name: Build macOS installer
run: |
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"
make installer-mac
xattr -dr com.apple.quarantine "installer/build/Basic Memory Installer.app"
- name: Zip macOS installer
run: |
@@ -94,4 +98,4 @@ jobs:
with:
files: installer/build/Basic-Memory-Installer-${{ needs.release.outputs.tag }}.zip
tag_name: ${{ needs.release.outputs.tag }}
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
+14
View File
@@ -1,6 +1,20 @@
# CHANGELOG
## v0.2.14 (2025-02-14)
## v0.2.13 (2025-02-14)
### Bug Fixes
- Refactor release.yml installer
([`a152657`](https://github.com/basicmachines-co/basic-memory/commit/a15265783e47c22d8c7931396281d023b3694e27))
- Try using symlinks in installer build
([`8dd923d`](https://github.com/basicmachines-co/basic-memory/commit/8dd923d5bc0587276f92b5f1db022ad9c8687e45))
## v0.2.12 (2025-02-14)
### Bug Fixes
+6 -7
View File
@@ -1,7 +1,7 @@
from cx_Freeze import setup, Executable
import sys
# Build options for all platforms - keep it simple and don't exclude too much
# Build options for all platforms
build_exe_options = {
"packages": ["json", "pathlib"],
"excludes": [
@@ -9,23 +9,22 @@ build_exe_options = {
"pydoc",
"test"
],
# Prevent duplication across dirs
"bin_includes": [],
"bin_excludes": [],
"zip_include_packages": ["*"],
"zip_exclude_packages": [],
}
# Platform-specific options
if sys.platform == "win32":
base = "Win32GUI" # Use GUI base for Windows
build_exe_options.update({
"include_msvcr": True, # Include Visual C++ runtime
"include_msvcr": True,
})
target_name = "Basic Memory Installer.exe"
else: # darwin
base = None # Don't use GUI base for macOS
target_name = "Basic Memory Installer"
# Use symlinks on macOS instead of copying
build_exe_options.update({
"no_copy_deps": True,
})
executables = [
Executable(
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "basic-memory"
version = "0.2.12"
version = "0.2.14"
description = "Local-first knowledge management combining Zettelkasten with knowledge graphs"
readme = "README.md"
requires-python = ">=3.12.1"