From 8f81091bafb35d2502fcf8263f58e69ab35666a0 Mon Sep 17 00:00:00 2001 From: Daniel Languiller Date: Wed, 8 Oct 2025 12:15:20 +1100 Subject: [PATCH 1/2] feature: add release notes and bump version --- HISTORY.rst | 9 +++++++++ version.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 3f871257..169d69dc 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,15 @@ Release History =============== +4.5.0 +++++++ +* Add `generate_all` command functionality for CLI generation. (#516) +* Add CLI generate interface with Liftr integration. (#513) +* Add comprehensive frontend testing infrastructure with Vitest and GitHub Actions CI pipeline. (#515) +* Fix duplicate parameters in CLI generation. (#512) +* Fix example generation issues and line break descriptions. (#510) (#511) +* Refactor API layer from class-based to object-based service patterns. (#509) + 4.4.0 ++++++ * GUI heuristics upgrade. (#498) diff --git a/version.py b/version.py index 70c41375..92a78775 100644 --- a/version.py +++ b/version.py @@ -1,5 +1,5 @@ -_MAJOR, _MINOR, _PATCH, _SUFFIX = ("4", "4", "0", "") +_MAJOR, _MINOR, _PATCH, _SUFFIX = ("4", "5", "0", "") # _PATCH: On main and in a nightly release the patch should be one ahead of the last released build. # _SUFFIX: This is mainly for nightly builds which have the suffix ".dev$DATE". See From 3fb5e7185b8119a37b5353d3a70f6f715186e82e Mon Sep 17 00:00:00 2001 From: Daniel Languiller Date: Wed, 8 Oct 2025 12:16:09 +1100 Subject: [PATCH 2/2] feature: bump release version in docs --- docs/_config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_config.yml b/docs/_config.yml index 642876c3..6b97efe1 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -36,7 +36,7 @@ github: pypi: https://pypi.org/project/aaz-dev/ # TODO: get version number from github -version: v4.4.0 +version: v4.5.0 # Build settings theme: minima