diff --git a/HISTORY.rst b/HISTORY.rst index 285d3da6..35d7de3e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ Release History =============== +4.5.2 +++++++ +* Update items in the `/workspace` dir to be function-based React instead of class-based. (#523) +* Fix add subcommands failure. (#529) + 4.5.1 ++++++ * Fix validation of schema pattern and error message. (#507) diff --git a/docs/_config.yml b/docs/_config.yml index aaced0f9..55ded5e8 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.5.1 +version: v4.5.2 # Build settings theme: minima diff --git a/version.py b/version.py index f782824c..892d5a62 100644 --- a/version.py +++ b/version.py @@ -1,5 +1,5 @@ -_MAJOR, _MINOR, _PATCH, _SUFFIX = ("4", "5", "1", "") +_MAJOR, _MINOR, _PATCH, _SUFFIX = ("4", "5", "2", "") # _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