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"