From ed7d785adfcd3b6d602a03f4ed03f5fd29aed522 Mon Sep 17 00:00:00 2001 From: EMRG Evolution Date: Thu, 6 Aug 2026 21:20:58 +0800 Subject: [PATCH] =?UTF-8?q?emrg:=20bump=20v0.2.8=20=E2=80=94=20GUI=20/=20?= =?UTF-8?q?=E6=8C=87=E4=BB=A4=E7=B3=BB=E7=BB=9F=20+=20i18n=20+=20=E6=BC=94?= =?UTF-8?q?=E5=8C=96=E8=87=AA=E6=84=88=20(rant=2021:18)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Version bump 0.2.7 → 0.2.8 across all 6 version sources (pyproject.toml / emrg/__init__.py / make-installer.sh / build-runtime.sh / gui/package.json / uv.lock). Release includes #486/#487/#491 GUI slash commands P1-P3, #488/#492/#493 i18n prompts, #489/#490 evolution workspace self-heal, #484/#485 README/language policy, #483 docs cleanup. test_version_sync all green. --- emrg/__init__.py | 2 +- emrg/gui/package.json | 2 +- packaging/build-runtime.sh | 2 +- packaging/make-installer.sh | 2 +- pyproject.toml | 2 +- uv.lock | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/emrg/__init__.py b/emrg/__init__.py index b8de79cf..1f346dd3 100644 --- a/emrg/__init__.py +++ b/emrg/__init__.py @@ -1,3 +1,3 @@ """EMRG — a self-evolving AI agent architecture.""" -__version__ = "0.2.7" +__version__ = "0.2.8" diff --git a/emrg/gui/package.json b/emrg/gui/package.json index 7e5c4e63..e568dba7 100644 --- a/emrg/gui/package.json +++ b/emrg/gui/package.json @@ -1,6 +1,6 @@ { "name": "emrg-gui", - "version": "0.2.7", + "version": "0.2.8", "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 65e65ec6..a7e4b5db 100755 --- a/packaging/build-runtime.sh +++ b/packaging/build-runtime.sh @@ -100,7 +100,7 @@ fi # ── 5. assets/LICENSE/version ── cp "$ROOT/LICENSE" "$DIST/assets/LICENSE" 2>/dev/null || echo "Apache-2.0" > "$DIST/assets/LICENSE" "$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.7" > "$DIST/version.txt" + || echo "0.2.8" > "$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 12c6370c..a684c253 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.7)" +VERSION="$(cat "$RUNTIME/version.txt" 2>/dev/null || echo 0.2.8)" PLATFORM="${1:-$(uname -s | tr '[:upper:]' '[:lower:]')}" mkdir -p "$DIST/artifacts" diff --git a/pyproject.toml b/pyproject.toml index ab96c714..3a4f0bc2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "emrg" -version = "0.2.7" +version = "0.2.8" description = "EMRG — a self-evolving AI agent architecture" requires-python = ">=3.11" license = { file = "LICENSE" } diff --git a/uv.lock b/uv.lock index baf3b7eb..1b50d1fb 100644 --- a/uv.lock +++ b/uv.lock @@ -35,7 +35,7 @@ wheels = [ [[package]] name = "emrg" -version = "0.2.7" +version = "0.2.8" source = { editable = "." } dependencies = [ { name = "httpx" },