diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 968762f4ca..71063869ae 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.6" + ".": "0.3.7" } diff --git a/.github/CHANGELOG.md b/.github/CHANGELOG.md index 54006ea3f3..777e6e9a35 100644 --- a/.github/CHANGELOG.md +++ b/.github/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [0.3.7](https://github.com/Aureliolo/synthorg/compare/v0.3.6...v0.3.7) (2026-03-19) + + +### Features + +* **engine:** implement Hybrid Plan + ReAct execution loop ([#582](https://github.com/Aureliolo/synthorg/issues/582)) ([008147c](https://github.com/Aureliolo/synthorg/commit/008147c698d3443c95618be4d783a5d3d3813005)) +* implement first-run setup wizard ([#584](https://github.com/Aureliolo/synthorg/issues/584)) ([dfed931](https://github.com/Aureliolo/synthorg/commit/dfed93123bfd24fabc50bc52d46211343835efea)) + + +### Bug Fixes + +* **api:** address ZAP DAST scan findings ([#579](https://github.com/Aureliolo/synthorg/issues/579)) ([ce9a3e0](https://github.com/Aureliolo/synthorg/commit/ce9a3e077ab6af5743a8150333d225d0de9ab0d3)) +* **cli:** regenerate compose and re-exec binary on update ([#576](https://github.com/Aureliolo/synthorg/issues/576)) ([3f226eb](https://github.com/Aureliolo/synthorg/commit/3f226eb79b46de59c1e94319a046765353392de4)) + + +### CI/CD + +* add SBOM generation to Docker and CLI releases ([#580](https://github.com/Aureliolo/synthorg/issues/580)) ([db459cf](https://github.com/Aureliolo/synthorg/commit/db459cf0892c46f9a887126edd70aeaafe6b70d8)) + ## [0.3.6](https://github.com/Aureliolo/synthorg/compare/v0.3.5...v0.3.6) (2026-03-19) diff --git a/pyproject.toml b/pyproject.toml index f7c2e2e11b..43433bf8aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -217,7 +217,7 @@ venv = ".venv" # --------------------------------------------------------------------------- [tool.commitizen] name = "cz_conventional_commits" -version = "0.3.6" # x-release-please-version +version = "0.3.7" # x-release-please-version tag_format = "v$version" # --------------------------------------------------------------------------- diff --git a/src/synthorg/__init__.py b/src/synthorg/__init__.py index 01a3233687..38319ed67a 100644 --- a/src/synthorg/__init__.py +++ b/src/synthorg/__init__.py @@ -1,3 +1,3 @@ """SynthOrg - Framework for building synthetic organizations.""" -__version__ = "0.3.6" # x-release-please-version +__version__ = "0.3.7" # x-release-please-version