From e4dfda575e88746e766ee2d84b86a2e8b501ac2a Mon Sep 17 00:00:00 2001 From: EMRG Evolution Date: Mon, 17 Aug 2026 20:05:25 +0800 Subject: [PATCH] emrg: bump version to v0.2.44 (rant 2026-08-17T20:00:33) --- emrg/__init__.py | 2 +- emrg/gui/package-lock.json | 4 ++-- emrg/gui/package.json | 2 +- packaging/build-runtime.sh | 2 +- packaging/make-installer.sh | 2 +- packaging/make-run-installer.sh | 2 +- pyproject.toml | 2 +- uv.lock | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/emrg/__init__.py b/emrg/__init__.py index c62465b7..9f8ef293 100644 --- a/emrg/__init__.py +++ b/emrg/__init__.py @@ -1,3 +1,3 @@ """EMRG — a self-evolving AI agent architecture.""" -__version__ = "0.2.43" +__version__ = "0.2.44" diff --git a/emrg/gui/package-lock.json b/emrg/gui/package-lock.json index 04b07af8..6fafafae 100644 --- a/emrg/gui/package-lock.json +++ b/emrg/gui/package-lock.json @@ -1,12 +1,12 @@ { "name": "emrg-gui", - "version": "0.2.43", + "version": "0.2.44", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "emrg-gui", - "version": "0.2.43", + "version": "0.2.44", "dependencies": { "dompurify": "^3.4.13", "highlight.js": "^11.10.0", diff --git a/emrg/gui/package.json b/emrg/gui/package.json index e8114794..b2e7c85f 100644 --- a/emrg/gui/package.json +++ b/emrg/gui/package.json @@ -1,6 +1,6 @@ { "name": "emrg-gui", - "version": "0.2.43", + "version": "0.2.44", "description": "EMRG GUI — Electron client for the EMRG self-evolving AI agent (Phase 3)", "main": "main.js", "scripts": { diff --git a/packaging/build-runtime.sh b/packaging/build-runtime.sh index c351f1e8..04c9eeac 100755 --- a/packaging/build-runtime.sh +++ b/packaging/build-runtime.sh @@ -124,7 +124,7 @@ cp "$ROOT/LICENSE" "$DIST/assets/LICENSE" 2>/dev/null || echo "Apache-2.0" > "$D # the runtime so installed machines have it even before daemon first run. cp "$ROOT/packaging/assets/skill-catalog.md" "$DIST/assets/skill-catalog.md" 2>/dev/null || true "$PY_BIN" -c "import emrg,sys; sys.path.insert(0,'$DIST/source'); import emrg as e; print(e.__version__)" > "$DIST/version.txt" 2>/dev/null \ - || echo "0.2.43" > "$DIST/version.txt" + || echo "0.2.44" > "$DIST/version.txt" echo "==> runtime size: $(du -sh "$DIST" | cut -f1)" echo "==> runtime built OK" diff --git a/packaging/make-installer.sh b/packaging/make-installer.sh index d8d6172f..caf3fc39 100755 --- a/packaging/make-installer.sh +++ b/packaging/make-installer.sh @@ -25,7 +25,7 @@ set -euo pipefail ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" DIST="$ROOT/dist" RUNTIME="$DIST/runtime" -VERSION="$(cat "$RUNTIME/version.txt" 2>/dev/null || echo 0.2.43)" +VERSION="$(cat "$RUNTIME/version.txt" 2>/dev/null || echo 0.2.44)" PLATFORM="${1:-$(uname -s | tr '[:upper:]' '[:lower:]')}" mkdir -p "$DIST/artifacts" diff --git a/packaging/make-run-installer.sh b/packaging/make-run-installer.sh index 616a7787..c7d23674 100644 --- a/packaging/make-run-installer.sh +++ b/packaging/make-run-installer.sh @@ -25,7 +25,7 @@ set -euo pipefail ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" DIST="$ROOT/dist" RUNTIME="$DIST/runtime" -VERSION="$(cat "$RUNTIME/version.txt" 2>/dev/null || echo 0.2.43)" +VERSION="$(cat "$RUNTIME/version.txt" 2>/dev/null || echo 0.2.44)" ARCH="${ARCH:-$(uname -m)}" # x86_64 / aarch64 OUT="$DIST/artifacts/EMRG-$VERSION-linux-$ARCH.run" diff --git a/pyproject.toml b/pyproject.toml index e382206f..71410cbe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "emrg" -version = "0.2.43" +version = "0.2.44" description = "EMRG — a self-evolving AI agent architecture" requires-python = ">=3.11" license = { file = "LICENSE" } diff --git a/uv.lock b/uv.lock index fc457faf..3e665002 100644 --- a/uv.lock +++ b/uv.lock @@ -35,7 +35,7 @@ wheels = [ [[package]] name = "emrg" -version = "0.2.43" +version = "0.2.44" source = { editable = "." } dependencies = [ { name = "httpx" },