From 91193eb6eb5979cd2c7574acaad25c11e76500dd Mon Sep 17 00:00:00 2001 From: kai ru <69238381+kairu-ms@users.noreply.github.com> Date: Thu, 3 Aug 2023 16:14:27 +0800 Subject: [PATCH] Release v1.6.0 --- HISTORY.rst | 4 ++++ docs/_config.yml | 2 +- version.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index b611072f..674955cf 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +1.6.0 +++++++ +* Adding `profile_` prefix for azure stack profile in CLI aaz package (#274) + 1.5.2 ++++++ * Update docs for Command Usage and Testing (#270) diff --git a/docs/_config.yml b/docs/_config.yml index af82faff..bcdde3cf 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: v1.3.1 +version: v1.6.0 # Build settings theme: minima diff --git a/version.py b/version.py index 0fcd61cd..5de5c1ae 100644 --- a/version.py +++ b/version.py @@ -1,5 +1,5 @@ -_MAJOR, _MINOR, _PATCH, _SUFFIX = ("1", "5", "2", "") +_MAJOR, _MINOR, _PATCH, _SUFFIX = ("1", "6", "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