Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion emrg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""EMRG — a self-evolving AI agent architecture."""

__version__ = "0.2.19"
__version__ = "0.2.20"
4 changes: 2 additions & 2 deletions emrg/gui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion emrg/gui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "emrg-gui",
"version": "0.2.19",
"version": "0.2.20",
"description": "EMRG GUI — Electron client for the EMRG self-evolving AI agent (Phase 3)",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packaging/build-runtime.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,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.19" > "$DIST/version.txt"
|| echo "0.2.20" > "$DIST/version.txt"

echo "==> runtime size: $(du -sh "$DIST" | cut -f1)"
echo "==> runtime built OK"
2 changes: 1 addition & 1 deletion packaging/make-installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.19)"
VERSION="$(cat "$RUNTIME/version.txt" 2>/dev/null || echo 0.2.20)"
PLATFORM="${1:-$(uname -s | tr '[:upper:]' '[:lower:]')}"

mkdir -p "$DIST/artifacts"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "emrg"
version = "0.2.19"
version = "0.2.20"
description = "EMRG — a self-evolving AI agent architecture"
requires-python = ">=3.11"
license = { file = "LICENSE" }
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading