diff --git a/CHANGELOG.md b/CHANGELOG.md index ec3d2ac..2ddf134 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [0.5.0](https://github.com/markoblogo/AGENTS.md_generator/compare/v0.4.0...v0.5.0) (2026-07-15) + + +### Features + +* add rabbithole seed export ([1a825b2](https://github.com/markoblogo/AGENTS.md_generator/commit/1a825b2473aec241963753a8541efafcb72dd403)) +* add reversible work guidance ([1b138b8](https://github.com/markoblogo/AGENTS.md_generator/commit/1b138b8b527397d76a5cd0b488969c4685f7993f)) + + +### Documentation + +* add delivery loop concept ([a70304f](https://github.com/markoblogo/AGENTS.md_generator/commit/a70304fc0906f0f8239d430cd9dec1a5dfdb2e18)) +* add harness-readable repo contract ([4fc6d3d](https://github.com/markoblogo/AGENTS.md_generator/commit/4fc6d3d4dd74cc2c2c47984bb783470865214da5)) +* add personal workspace router concept ([7a2844f](https://github.com/markoblogo/AGENTS.md_generator/commit/7a2844f4c6465eb09b909f06ee8274f4642a4453)) +* add review lenses to rabbithole seed ([2362b09](https://github.com/markoblogo/AGENTS.md_generator/commit/2362b09cdeea3b7d5d49b03979fb51c51c5257a5)) +* clarify agentsgen role for engineering skills ([5648452](https://github.com/markoblogo/AGENTS.md_generator/commit/5648452f2260918c585e5f1b46d74c1198851a6a)) +* explain mcp cli skills layering ([d18976d](https://github.com/markoblogo/AGENTS.md_generator/commit/d18976d0552956c9f3285744daa8a647ad65dc3e)) +* replace retired Homebrew tap install path ([b9ea4e1](https://github.com/markoblogo/AGENTS.md_generator/commit/b9ea4e1133f64d8d4df06214fe8c4467093d9181)) +* retire Homebrew tap install path ([00dbfaf](https://github.com/markoblogo/AGENTS.md_generator/commit/00dbfaf872e73e2451b1568aa71b81f549428927)) +* update ABVX skill pairing ([dc7713b](https://github.com/markoblogo/AGENTS.md_generator/commit/dc7713b3db95e0e35664363e7bb11c71a648267a)) + ## [0.3.0](https://github.com/markoblogo/AGENTS.md_generator/compare/v0.2.2...v0.3.0) (2026-06-13) diff --git a/pyproject.toml b/pyproject.toml index 5a143ce..610492a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "agentsgen" -version = "0.4.0" +version = "0.5.0" description = "Generate and safely update AGENTS.md and RUNBOOK.md for coding agents" readme = "README.md" requires-python = ">=3.11" diff --git a/src/agentsgen/__init__.py b/src/agentsgen/__init__.py index db6c2cb..362df39 100644 --- a/src/agentsgen/__init__.py +++ b/src/agentsgen/__init__.py @@ -1,3 +1,3 @@ __all__ = ["__version__"] -__version__ = "0.4.0" +__version__ = "0.5.0"