diff --git a/acp_registry/agent.json b/acp_registry/agent.json index 966444ec912..bbfc5f246a2 100644 --- a/acp_registry/agent.json +++ b/acp_registry/agent.json @@ -1,16 +1,20 @@ { "id": "hermes-agent", "name": "Hermes Agent", - "version": "0.15.1", + "version": "0.15.2", "description": "Self-improving open-source AI agent by Nous Research with ACP editor integration, persistent memory, skills, and rich tool support.", "repository": "https://github.com/NousResearch/hermes-agent", "website": "https://hermes-agent.nousresearch.com/docs/user-guide/features/acp", - "authors": ["Nous Research"], + "authors": [ + "Nous Research" + ], "license": "MIT", "distribution": { "uvx": { - "package": "hermes-agent[acp]==0.15.1", - "args": ["hermes-acp"] + "package": "hermes-agent[acp]==0.15.2", + "args": [ + "hermes-acp" + ] } } } diff --git a/hermes_cli/__init__.py b/hermes_cli/__init__.py index 5e6a99ac0ef..d29117ec952 100644 --- a/hermes_cli/__init__.py +++ b/hermes_cli/__init__.py @@ -14,8 +14,8 @@ Provides subcommands for: import os import sys -__version__ = "0.15.1" -__release_date__ = "2026.5.29" +__version__ = "0.15.2" +__release_date__ = "2026.5.29.2" def _ensure_utf8(): diff --git a/pyproject.toml b/pyproject.toml index ce1b8b3da97..3150b73a39c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "hermes-agent" -version = "0.15.1" +version = "0.15.2" description = "The self-improving AI agent — creates skills from experience, improves them during use, and runs anywhere" readme = "README.md" requires-python = ">=3.11"