diff --git a/HISTORY.rst b/HISTORY.rst index 169f99d3..2cdedc04 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,13 @@ Release History =============== + +0.18.0 +++++++ +* Relink command after class unwrapped (#182) +* Support unwrap class modification inherit (#181) +* Change portal namespace (#179) + 0.17.0 ++++++ * Workspace swagger picker supports load default swagger module and resource providers (#175) diff --git a/src/aaz_dev/utils/config.py b/src/aaz_dev/utils/config.py index af231134..293df38b 100644 --- a/src/aaz_dev/utils/config.py +++ b/src/aaz_dev/utils/config.py @@ -5,7 +5,7 @@ class Config: - MIN_CLI_CORE_VERSION = version.parse("2.43.0") + MIN_CLI_CORE_VERSION = version.parse("2.44.0") AAZ_PATH = os.environ.get("AAZ_PATH", None) SWAGGER_PATH = os.environ.get("AAZ_SWAGGER_PATH", None) diff --git a/version.py b/version.py index 521bdc2f..e50447fa 100644 --- a/version.py +++ b/version.py @@ -1,5 +1,5 @@ -_MAJOR, _MINOR, _PATCH, _SUFFIX = ("0", "17", "0", "") +_MAJOR, _MINOR, _PATCH, _SUFFIX = ("0", "18", "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