Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,17 @@

Release History
===============
3.2.0
++++++
* Handle swagger 204 response (#426)
* Bump up typespec version and add extern tsp lib for liftr (#427)
* Apply cls definitions recursively to avoid definition loss (#428)
* Support generate identity subcommands when using patch only update (#429)
* Support update command inherent from existing methods used in aaz models (#430)
* Fix bugs for class name with dot (#431)

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)
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ github:
pypi: https://pypi.org/project/aaz-dev/

# TODO: get version number from github
version: v3.1.0
version: v3.2.0

# Build settings
theme: minima
Expand Down
2 changes: 1 addition & 1 deletion src/aaz_dev/utils/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class Config:

MIN_CLI_CORE_VERSION = version.parse("2.61.0")
MIN_CLI_CORE_VERSION = version.parse("2.67.0")

AAZ_PATH = os.environ.get("AAZ_PATH", None)
SWAGGER_PATH = os.environ.get("AAZ_SWAGGER_PATH", None)
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

_MAJOR, _MINOR, _PATCH, _SUFFIX = ("3", "1", "0", "")
_MAJOR, _MINOR, _PATCH, _SUFFIX = ("3", "2", "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
Expand Down
Loading