From 56ae5d4020a09e03aa4692cb726b660c6bd7ce35 Mon Sep 17 00:00:00 2001 From: AllyW Date: Wed, 12 Jun 2024 15:07:54 +0800 Subject: [PATCH] release 2.8.0 (#373) --- HISTORY.rst | 8 ++++++++ docs/_config.yml | 2 +- src/aaz_dev/utils/config.py | 2 +- version.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 8ea6ed54..a221bc48 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,14 @@ Release History =============== +2.8.0 +++++++ +* Support enum extension (#366) +* Escape backslashes in docstrings (#360) +* Escape backslash using constant-convert (#365) +* Support keywords as arg name (#362) +* Handle keyword in response +* Conduct code doc (#364) 2.7.0 ++++++ diff --git a/docs/_config.yml b/docs/_config.yml index 4c5224b7..e7ebff81 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: v2.7.0 +version: v2.8.0 # Build settings theme: minima diff --git a/src/aaz_dev/utils/config.py b/src/aaz_dev/utils/config.py index dfb58b34..bbb3f8e7 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.57.0") + MIN_CLI_CORE_VERSION = version.parse("2.61.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 195d0300..04d72267 100644 --- a/version.py +++ b/version.py @@ -1,5 +1,5 @@ -_MAJOR, _MINOR, _PATCH, _SUFFIX = ("2", "7", "0", "") +_MAJOR, _MINOR, _PATCH, _SUFFIX = ("2", "8", "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