From 6a620a590f1ae00b4e622f7e380e4ba58187c860 Mon Sep 17 00:00:00 2001 From: Jiri Puc Date: Wed, 6 May 2026 14:26:40 +0200 Subject: [PATCH] chore: release 0.3.0 Co-Authored-By: Claude Opus 4.6 (1M context) --- CHANGELOG.md | 17 ++++++++++++++++- pyproject.toml | 2 +- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 715ef36..b3c7247 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0] - 2026-05-06 + +### Removed + +- `target_paths` field from check definitions. Harness judges invoke real + agents (CC, Codex, Gemini CLI) that read files on their own — tell them + which files to check in the `instructions` field. Deterministic scripts + receive `project_root` in context.json and locate files independently. + Existing YAML files with `target_paths` will fail validation. + +### Changed + +- Default codex model upgraded from `gpt-5.4` to `gpt-5.5`. + ## [0.2.0] - 2026-04-27 ### Removed @@ -214,7 +228,8 @@ Initial public release. - `eb` / `eval-banana` CLI with `init`, `run`, `list`, and `validate` commands. - Explanatory comments in generated TOML config templates. -[Unreleased]: https://github.com/writeitai/eval-banana/compare/v0.2.0...HEAD +[Unreleased]: https://github.com/writeitai/eval-banana/compare/v0.3.0...HEAD +[0.3.0]: https://github.com/writeitai/eval-banana/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/writeitai/eval-banana/compare/v0.1.0...v0.2.0 [0.1.0]: https://github.com/writeitai/eval-banana/compare/v0.0.9...v0.1.0 [0.0.9]: https://github.com/writeitai/eval-banana/compare/v0.0.8...v0.0.9 diff --git a/pyproject.toml b/pyproject.toml index bb0f487..9ebcaa1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "eval-banana" -version = "0.2.0" +version = "0.3.0" description = "Lightweight aspect-based evaluation framework with YAML check definitions." readme = "README.md" requires-python = ">=3.12"