From 57261b5087febc4c40d76130f0a32c45e28ab09d Mon Sep 17 00:00:00 2001 From: EMRG Evolution Date: Mon, 24 Aug 2026 22:33:37 +0800 Subject: [PATCH] =?UTF-8?q?emrg:=20bump=20version=20to=20v0.2.77=20(releas?= =?UTF-8?q?e:=20#963=20=E2=80=94=20GUI=20task-list=20scrollbar=20fix,=20#9?= =?UTF-8?q?64=20=E2=80=94=20per-task=20extra=5Fprompt)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 ac0a4e28..82dc2b36 100644 --- a/emrg/__init__.py +++ b/emrg/__init__.py @@ -1,3 +1,3 @@ """EMRG — a self-evolving AI agent architecture.""" -__version__ = "0.2.76" +__version__ = "0.2.77" diff --git a/emrg/gui/package-lock.json b/emrg/gui/package-lock.json index 49ded528..17195f5e 100644 --- a/emrg/gui/package-lock.json +++ b/emrg/gui/package-lock.json @@ -1,12 +1,12 @@ { "name": "emrg-gui", - "version": "0.2.76", + "version": "0.2.77", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "emrg-gui", - "version": "0.2.76", + "version": "0.2.77", "dependencies": { "dompurify": "^3.4.13", "highlight.js": "^11.10.0", diff --git a/emrg/gui/package.json b/emrg/gui/package.json index 3361dd4e..24e6721c 100644 --- a/emrg/gui/package.json +++ b/emrg/gui/package.json @@ -1,6 +1,6 @@ { "name": "emrg-gui", - "version": "0.2.76", + "version": "0.2.77", "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 fe86f6c3..5a70fca1 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.76" > "$DIST/version.txt" + || echo "0.2.77" > "$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 49464738..a7b995c0 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.76)" +VERSION="$(cat "$RUNTIME/version.txt" 2>/dev/null || echo 0.2.77)" 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 d8130f1b..9be34b03 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.76)" +VERSION="$(cat "$RUNTIME/version.txt" 2>/dev/null || echo 0.2.77)" ARCH="${ARCH:-$(uname -m)}" # x86_64 / aarch64 OUT="$DIST/artifacts/EMRG-$VERSION-linux-$ARCH.run" diff --git a/pyproject.toml b/pyproject.toml index beee7bfd..3b5908c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "emrg" -version = "0.2.76" +version = "0.2.77" description = "EMRG — a self-evolving AI agent architecture" requires-python = ">=3.11" license = { file = "LICENSE" } diff --git a/uv.lock b/uv.lock index b43be72b..30c5f932 100644 --- a/uv.lock +++ b/uv.lock @@ -35,7 +35,7 @@ wheels = [ [[package]] name = "emrg" -version = "0.2.76" +version = "0.2.77" source = { editable = "." } dependencies = [ { name = "httpx" },