diff --git a/config/compatibility.json b/config/compatibility.json index b3af48e..6708556 100644 --- a/config/compatibility.json +++ b/config/compatibility.json @@ -1,5 +1,5 @@ { - "hub_version": "0.1.1", + "hub_version": "0.1.2", "min_hermes_version": "0.20.0", "max_tested_hermes_version": "0.20.4", "tested_versions": [ diff --git a/installer/HermesHubSetup.cs b/installer/HermesHubSetup.cs index f70fa93..b050a1a 100644 --- a/installer/HermesHubSetup.cs +++ b/installer/HermesHubSetup.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Diagnostics; using System.Drawing; @@ -14,11 +14,11 @@ namespace HermesHubSetup { public class SetupEngine { - public const string HUB_VERSION = "0.1.1"; + public const string HUB_VERSION = "0.1.2"; // Подставляется сборщиком из фактического git-коммита. Раньше здесь // жил зашитый "8cddc9f", то есть манифест сообщал неправду о том, из // какого кода собран установщик. - public const string BuildCommit = "ef6a9e1"; + public const string BuildCommit = "8daeafa"; public const string MIN_HERMES_VERSION = "0.20.0"; public const string MAX_TESTED_HERMES = "0.20.4"; diff --git a/installer/install-linux.sh b/installer/install-linux.sh index 7fedf90..cd1bb27 100644 --- a/installer/install-linux.sh +++ b/installer/install-linux.sh @@ -7,7 +7,7 @@ set -e -HUB_VERSION="0.1.1" +HUB_VERSION="0.1.2" DEFAULT_HERMES_HOME="$HOME/.hermes" HERMES_HOME="${HERMES_HOME:-$DEFAULT_HERMES_HOME}" diff --git a/launcher/HermesHub.exe b/launcher/HermesHub.exe index a5aa2fb..1f154d0 100644 Binary files a/launcher/HermesHub.exe and b/launcher/HermesHub.exe differ diff --git a/launcher/HermesHubWeb.exe b/launcher/HermesHubWeb.exe index 04036e9..fcf1375 100644 Binary files a/launcher/HermesHubWeb.exe and b/launcher/HermesHubWeb.exe differ diff --git a/pyproject.toml b/pyproject.toml index d4ca075..0866d13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "hermes-hub" -version = "0.1.1" +version = "0.1.2" description = "Multi-Agent & Multi-Provider Control Hub for Hermes Agent" readme = "README.md" license = { text = "MIT" } diff --git a/src/antigravity_provider/version.py b/src/antigravity_provider/version.py index dd66012..f204dff 100644 --- a/src/antigravity_provider/version.py +++ b/src/antigravity_provider/version.py @@ -1,7 +1,7 @@ """Single Source of Truth for Hermes Hub Versioning.""" from __future__ import annotations -__version__ = "0.1.1" +__version__ = "0.1.2" VERSION_INFO = (0, 1, 1) CHANNEL = "stable" MINIMUM_HERMES_VERSION = "0.20.0"