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/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 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