From 93a0d65869c016c1efa80d031a20b878d16d6574 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Jun 2026 16:48:27 +0000 Subject: [PATCH] chore(main): release 1.6.0 --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- src/opencode_agent_hub/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b36f11..822f205 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.6.0](https://github.com/xnoto/opencode-agent-hub/compare/v1.5.0...v1.6.0) (2026-06-08) + + +### Features + +* add OpenCode config, throttling, and atomic file events ([#85](https://github.com/xnoto/opencode-agent-hub/issues/85)) ([d9a49d7](https://github.com/xnoto/opencode-agent-hub/commit/d9a49d77056b0155f8ef62c4fe14fbb7f364c353)) + ## [1.5.0](https://github.com/xnoto/opencode-agent-hub/compare/v1.4.3...v1.5.0) (2026-04-17) diff --git a/pyproject.toml b/pyproject.toml index 26b8648..4251fd4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "opencode-agent-hub" -version = "1.5.0" +version = "1.6.0" description = "Multi-agent coordination daemon and tools for OpenCode" readme = "README.md" license = "AGPL-3.0-only" diff --git a/src/opencode_agent_hub/__init__.py b/src/opencode_agent_hub/__init__.py index fa81532..901528c 100644 --- a/src/opencode_agent_hub/__init__.py +++ b/src/opencode_agent_hub/__init__.py @@ -8,4 +8,4 @@ try: __version__ = version("opencode-agent-hub") except PackageNotFoundError: # pragma: no cover - fallback for dev - __version__ = "1.5.0" + __version__ = "1.6.0"