From 026e6ff4ceeb195dc3e5af6219691f171631a888 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Jul 2026 16:30:19 +0000 Subject: [PATCH] chore(main): release 0.2.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 18 ++++++++++++++++++ lib/chorus/version.rb | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 466df71..2be9c43 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0" + ".": "0.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..6da88dd --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +## [0.2.0](https://github.com/Amayyas/Chorus/compare/v0.1.0...v0.2.0) (2026-07-09) + + +### Features + +* add Anthropic API client and base Agent class ([75df02c](https://github.com/Amayyas/Chorus/commit/75df02c0040602110b011e315effff848e9f0e60)) +* add CoderAgent and ResearchAgent ([7d70aa7](https://github.com/Amayyas/Chorus/commit/7d70aa7233be1d83912d5e8a5426b3d01256d18e)) +* add Context with per-agent context slicing ([fc85c0c](https://github.com/Amayyas/Chorus/commit/fc85c0c0781c48cf9b7028a1df4a7d832f018a93)) +* add keyword-based Router ([691c5df](https://github.com/Amayyas/Chorus/commit/691c5df50db8f9c331f9fb9d33d7121e04999d2e)) +* add Orchestrator and main entry point ([9a83c38](https://github.com/Amayyas/Chorus/commit/9a83c38a7730ad3310c1d59b275251f60198bdb2)) + + +### Bug Fixes + +* resolve RuboCop offenses in lib ([f6e7009](https://github.com/Amayyas/Chorus/commit/f6e700976aea92f552fcf4f68997f11533300c0c)) +* resolve RuboCop offenses in specs ([9fdf8e3](https://github.com/Amayyas/Chorus/commit/9fdf8e348d859306cd848f29d0a1de3d72494c48)) diff --git a/lib/chorus/version.rb b/lib/chorus/version.rb index 84cf23f..4b4a5e4 100644 --- a/lib/chorus/version.rb +++ b/lib/chorus/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Chorus - VERSION = "0.1.0" + VERSION = "0.2.0" end