diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index f0bffe1bd..8c446e2ce 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -12,7 +12,7 @@ body: id: version attributes: label: What version of eigent are you using? - placeholder: E.g., 0.0.89 + placeholder: E.g., 0.0.90 validations: required: true diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6a5c88896..d39e22b2c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -347,7 +347,7 @@ jobs: files: | gh-release-assets/* - # Extract version from tag (e.g., v0.0.85 -> 0.0.89) + # Extract version from tag (e.g., v0.0.85 -> 0.0.90) - name: Extract version if: startsWith(github.ref, 'refs/tags/') id: version diff --git a/backend/app/agent/toolkit/terminal_toolkit.py b/backend/app/agent/toolkit/terminal_toolkit.py index 7f5299d4b..3306e7c37 100644 --- a/backend/app/agent/toolkit/terminal_toolkit.py +++ b/backend/app/agent/toolkit/terminal_toolkit.py @@ -41,7 +41,7 @@ logger = logging.getLogger("terminal_toolkit") # App version - should match electron app version # TODO: Consider getting this from a shared config -APP_VERSION = "0.0.89" +APP_VERSION = "0.0.90" def get_terminal_base_venv_path() -> str: diff --git a/package.json b/package.json index 264deabbc..c9b1f4480 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eigent", - "version": "0.0.89", + "version": "0.0.90", "main": "dist-electron/main/index.js", "description": "Eigent", "author": "Eigent.AI",