Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v4.0.0 #458

Merged
merged 1 commit into from
Feb 27, 2025
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
17 changes: 17 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

Release History
===============
4.0.0
++++++
* [Breaking Change] Dropped the dependency on `tree.json` file in aaz repo (#409)
* Support `AnyType` schema and argument, require azure-cli-core >= 2.70.0 (#457)
* Enhance performance of `aaz-dev command-model verify` (#433)
* Fix error message when condition arguments are hidden (#436)
* Fix swagger readme file parse (#440)(#441)
* Replace inflect library by pluralizer to singular name (#437)
* Support githooks in aaz repo (#448)(#452)
* Improve UI (#455)(#409)
* typespec: Add basic response for lro delete operation (#435)
* typespec: update tsp compiler to 0.64.0 and liftr 0.7.0 (#445)
* typespec: fix readonly property (#446)
* typespec: support the literal type (#447)
* typespec: adjust azure resource justification (#449)
* typespec: support `x-ms-identifiers` and `x-ms-secret` (#450)

3.2.0
++++++
* Handle swagger 204 response (#426)
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.2.0
version: v4.0.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.67.0")
MIN_CLI_CORE_VERSION = version.parse("2.70.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", "2", "0", "")
_MAJOR, _MINOR, _PATCH, _SUFFIX = ("4", "0", "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