From d83fd69204b9b4fc0018ae06c34799d0ae17e86a Mon Sep 17 00:00:00 2001 From: argszero Date: Sat, 8 Aug 2026 18:34:04 +0800 Subject: [PATCH] =?UTF-8?q?emrg:=20bump=20v0.2.13=20=E2=80=94=20Windows=20?= =?UTF-8?q?GBK=20fix=20+=20installable-skills=20catalog=20(#568-#573)?= 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 +- pyproject.toml | 2 +- uv.lock | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/emrg/__init__.py b/emrg/__init__.py index 7d09c264..e221a444 100644 --- a/emrg/__init__.py +++ b/emrg/__init__.py @@ -1,3 +1,3 @@ """EMRG — a self-evolving AI agent architecture.""" -__version__ = "0.2.12" +__version__ = "0.2.13" diff --git a/emrg/gui/package-lock.json b/emrg/gui/package-lock.json index 5ae62913..8db1c846 100644 --- a/emrg/gui/package-lock.json +++ b/emrg/gui/package-lock.json @@ -1,12 +1,12 @@ { "name": "emrg-gui", - "version": "0.2.12", + "version": "0.2.13", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "emrg-gui", - "version": "0.2.12", + "version": "0.2.13", "dependencies": { "dompurify": "^3.4.13", "highlight.js": "^11.10.0", diff --git a/emrg/gui/package.json b/emrg/gui/package.json index 1e1f0100..fa8f7397 100644 --- a/emrg/gui/package.json +++ b/emrg/gui/package.json @@ -1,6 +1,6 @@ { "name": "emrg-gui", - "version": "0.2.12", + "version": "0.2.13", "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 58a1726a..112631aa 100755 --- a/packaging/build-runtime.sh +++ b/packaging/build-runtime.sh @@ -103,7 +103,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.12" > "$DIST/version.txt" + || echo "0.2.13" > "$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 cdc82684..0a8b5bc5 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.12)" +VERSION="$(cat "$RUNTIME/version.txt" 2>/dev/null || echo 0.2.13)" PLATFORM="${1:-$(uname -s | tr '[:upper:]' '[:lower:]')}" mkdir -p "$DIST/artifacts" diff --git a/pyproject.toml b/pyproject.toml index 708b2cb1..306640b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "emrg" -version = "0.2.12" +version = "0.2.13" description = "EMRG — a self-evolving AI agent architecture" requires-python = ">=3.11" license = { file = "LICENSE" } diff --git a/uv.lock b/uv.lock index eec7c1e5..226d5496 100644 --- a/uv.lock +++ b/uv.lock @@ -35,7 +35,7 @@ wheels = [ [[package]] name = "emrg" -version = "0.2.12" +version = "0.2.13" source = { editable = "." } dependencies = [ { name = "httpx" },