From c55e3cb703069b7ff22d37432723d5514a682215 Mon Sep 17 00:00:00 2001 From: kai ru Date: Fri, 18 Oct 2024 14:18:59 +0800 Subject: [PATCH] Release v3.1.0 --- HISTORY.rst | 9 +++++++++ docs/_config.yml | 2 +- version.py | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 1d1d8808..b4689eeb 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,15 @@ Release History =============== +3.1.0 ++++++ +* Support managed identity sub commands (#403) +* Support to merge crud operations for the same resource (#415) +* Support to generate object with props and additional properties as FreeFormDictType in CLI (#415) +* Fix cli generation with build-in keywords (#416) +* Drop the `msrestazure` dependence (#418) +* Disable AazResourceLocationArg auto fill from the value from resource group when it's `nullable`. (#421) + 3.0.0 ++++++ * Support swagger `base_path` (#400) diff --git a/docs/_config.yml b/docs/_config.yml index 10d37e5a..ed8fe4f0 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: v3.0.0 +version: v3.1.0 # Build settings theme: minima diff --git a/version.py b/version.py index 50d07f12..d880be9d 100644 --- a/version.py +++ b/version.py @@ -1,5 +1,5 @@ -_MAJOR, _MINOR, _PATCH, _SUFFIX = ("3", "0", "0", "") +_MAJOR, _MINOR, _PATCH, _SUFFIX = ("3", "1", "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