diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 42e80ad5a..aeb8bef68 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.82 + placeholder: E.g., 0.0.83 validations: required: true diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eb1c069a4..2abbe32be 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -261,7 +261,7 @@ jobs: release/win-x64/* release/linux-x64/* - # Extract version from tag (e.g., v0.0.82 -> 0.0.82) + # Extract version from tag (e.g., v0.0.83 -> 0.0.83) - 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 ce35dfcdb..5213c57a8 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.82" +APP_VERSION = "0.0.83" def get_terminal_base_venv_path() -> str: diff --git a/package.json b/package.json index 209f64ce3..0d47b6ce3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eigent", - "version": "0.0.82", + "version": "0.0.83", "main": "dist-electron/main/index.js", "description": "Eigent", "author": "Eigent.AI",