chore: release v0.16.0 (2026.6.5) (#40206)
The Surface Release — native desktop app, browser admin panel, remote-gateway connect, Simplified Chinese desktop UI, leaner default skill set, NVIDIA/skills trusted tap, fuzzy model picker, /undo. 874 commits · 542 PRs · 170 contributors · 399 issues closed.
This commit is contained in:
parent
ea266f43e9
commit
3c231eb397
6 changed files with 18 additions and 6 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "hermes-agent",
|
"id": "hermes-agent",
|
||||||
"name": "Hermes Agent",
|
"name": "Hermes Agent",
|
||||||
"version": "0.15.1",
|
"version": "0.16.0",
|
||||||
"description": "Self-improving open-source AI agent by Nous Research with ACP editor integration, persistent memory, skills, and rich tool support.",
|
"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",
|
"repository": "https://github.com/NousResearch/hermes-agent",
|
||||||
"website": "https://hermes-agent.nousresearch.com/docs/user-guide/features/acp",
|
"website": "https://hermes-agent.nousresearch.com/docs/user-guide/features/acp",
|
||||||
|
|
@ -9,7 +9,7 @@
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"distribution": {
|
"distribution": {
|
||||||
"uvx": {
|
"uvx": {
|
||||||
"package": "hermes-agent[acp]==0.15.1",
|
"package": "hermes-agent[acp]==0.16.0",
|
||||||
"args": ["hermes-acp"]
|
"args": ["hermes-acp"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -14,8 +14,8 @@ Provides subcommands for:
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
__version__ = "0.15.1"
|
__version__ = "0.16.0"
|
||||||
__release_date__ = "2026.5.29"
|
__release_date__ = "2026.6.5"
|
||||||
|
|
||||||
|
|
||||||
def _ensure_utf8():
|
def _ensure_utf8():
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "hermes-agent"
|
name = "hermes-agent"
|
||||||
version = "0.15.1"
|
version = "0.16.0"
|
||||||
description = "The self-improving AI agent — creates skills from experience, improves them during use, and runs anywhere"
|
description = "The self-improving AI agent — creates skills from experience, improves them during use, and runs anywhere"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
# Upper bound is load-bearing, not cosmetic. uv resolves the project's
|
# Upper bound is load-bearing, not cosmetic. uv resolves the project's
|
||||||
|
|
|
||||||
|
|
@ -40,6 +40,8 @@ IGNORED_PATTERNS = [
|
||||||
re.compile(r"^Claude", re.IGNORECASE),
|
re.compile(r"^Claude", re.IGNORECASE),
|
||||||
re.compile(r"^Copilot$", re.IGNORECASE),
|
re.compile(r"^Copilot$", re.IGNORECASE),
|
||||||
re.compile(r"^Cursor(\s+Agent)?$", re.IGNORECASE),
|
re.compile(r"^Cursor(\s+Agent)?$", re.IGNORECASE),
|
||||||
|
re.compile(r"^Codex$", re.IGNORECASE),
|
||||||
|
re.compile(r"^github-advanced-security(\[bot\])?$", re.IGNORECASE),
|
||||||
re.compile(r"^GitHub\s*Actions?$", re.IGNORECASE),
|
re.compile(r"^GitHub\s*Actions?$", re.IGNORECASE),
|
||||||
re.compile(r"^github-actions(\[bot\])?$", re.IGNORECASE),
|
re.compile(r"^github-actions(\[bot\])?$", re.IGNORECASE),
|
||||||
re.compile(r"^dependabot", re.IGNORECASE),
|
re.compile(r"^dependabot", re.IGNORECASE),
|
||||||
|
|
|
||||||
|
|
@ -1167,6 +1167,16 @@ AUTHOR_MAP = {
|
||||||
"chenzeshi@live.com": "chen1749144759",
|
"chenzeshi@live.com": "chen1749144759",
|
||||||
"mor.aleksandr@yahoo.com": "MorAlekss",
|
"mor.aleksandr@yahoo.com": "MorAlekss",
|
||||||
"276649498+ztexydt-cqh@users.noreply.github.com": "ztexydt-cqh",
|
"276649498+ztexydt-cqh@users.noreply.github.com": "ztexydt-cqh",
|
||||||
|
# v0.16.0 additions
|
||||||
|
"teknium@nous.dev": "teknium1",
|
||||||
|
"alaamohanad169@gmail.com": "alaamohanad169-ship-it",
|
||||||
|
"archer@ouyangdeMac-mini.local": "Archerouyang", # display name 欧阳
|
||||||
|
"batosk2@gmail.com": "Sarbai", # git email for PR #33438 author (display: Брагарник Дмитро)
|
||||||
|
"info@aminvakil.com": "aminvakil",
|
||||||
|
"nikpolale@gmail.com": "polnikale",
|
||||||
|
"sarveshagl1327@gmail.com": "sarvesh1327", # salvaged via #38655
|
||||||
|
"sohyuanchin@gmail.com": "wysie",
|
||||||
|
"bedirhan@codeway.co": "bedirhancode",
|
||||||
"ash@users.noreply.github.com": "ash",
|
"ash@users.noreply.github.com": "ash",
|
||||||
"andrewho.sf@gmail.com": "andrewhosf",
|
"andrewho.sf@gmail.com": "andrewhosf",
|
||||||
# April 2026 Honcho bug-fix consolidation (#15381)
|
# April 2026 Honcho bug-fix consolidation (#15381)
|
||||||
|
|
|
||||||
2
uv.lock
generated
2
uv.lock
generated
|
|
@ -1390,7 +1390,7 @@ wheels = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "hermes-agent"
|
name = "hermes-agent"
|
||||||
version = "0.15.1"
|
version = "0.16.0"
|
||||||
source = { editable = "." }
|
source = { editable = "." }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "croniter" },
|
{ name = "croniter" },
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue