From 7c7324d084636a553dccc9d5662368609839eff1 Mon Sep 17 00:00:00 2001 From: EMRG Evolution Date: Wed, 5 Aug 2026 17:28:27 +0800 Subject: [PATCH 1/2] =?UTF-8?q?emrg:=20bump=20v0.2.3=20=E2=80=94=20Windows?= =?UTF-8?q?=20=E4=BF=AE=E5=A4=8D=E9=9B=86=E6=89=93=E7=89=88=EF=BC=88#399?= =?UTF-8?q?=20=E5=8D=B8=E8=BD=BD=E5=BD=BB=E5=BA=95=20+=20#401=20TUI=20+=20?= =?UTF-8?q?#403=20=E7=9C=9F=E5=AE=9E=E6=8A=A5=E9=94=99=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit rant 2026-08-05T17:26:40:master 已合入 6 个 Windows 相关修复但未打 tag, Windows 用户仍在使用旧安装包。本次 bump 0.2.2 → 0.2.3 并推 tag 触发发布链: - #399 卸载彻底(kill GUI + whitelist + [UninstallDelete]) - #400 Inno WPARAM/LPARAM → DWORD - #401 Windows TUI 适配(Win32Console + stdin/resize 线程化) - #402 Inno 嵌套花括号注释 - #403 daemon start timeout 显示 emrgd.log 尾部真实报错 - #405 README 同步 版本文件 4 处同步:pyproject.toml / __init__.py / make-installer.sh / build-runtime.sh --- emrg/__init__.py | 2 +- packaging/build-runtime.sh | 2 +- packaging/make-installer.sh | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/emrg/__init__.py b/emrg/__init__.py index 7d5956d..cc0112c 100644 --- a/emrg/__init__.py +++ b/emrg/__init__.py @@ -1,3 +1,3 @@ """EMRG — a self-evolving AI agent architecture.""" -__version__ = "0.2.2" +__version__ = "0.2.3" diff --git a/packaging/build-runtime.sh b/packaging/build-runtime.sh index a018d75..bbea1f9 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.2" > "$DIST/version.txt" + || echo "0.2.3" > "$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 e862879..5116d5f 100755 --- a/packaging/make-installer.sh +++ b/packaging/make-installer.sh @@ -24,7 +24,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.2)" +VERSION="$(cat "$RUNTIME/version.txt" 2>/dev/null || echo 0.2.3)" PLATFORM="${1:-$(uname -s | tr '[:upper:]' '[:lower:]')}" mkdir -p "$DIST/artifacts" diff --git a/pyproject.toml b/pyproject.toml index 12fbd50..dc499de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "emrg" -version = "0.2.2" +version = "0.2.3" description = "EMRG — a self-evolving AI agent architecture" requires-python = ">=3.11" license = { file = "LICENSE" } From 3071f3d158a253d629001e70cac4d36c936d21f5 Mon Sep 17 00:00:00 2001 From: EMRG Evolution Date: Wed, 5 Aug 2026 17:29:10 +0800 Subject: [PATCH 2/2] emrg: sync uv.lock to 0.2.3 --- uv.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uv.lock b/uv.lock index d4f2eb6..adfc0f6 100644 --- a/uv.lock +++ b/uv.lock @@ -35,7 +35,7 @@ wheels = [ [[package]] name = "emrg" -version = "0.2.2" +version = "0.2.3" source = { editable = "." } dependencies = [ { name = "httpx" },