Skip to content

Commit 25e1973

Browse files
committed
Release v4.0.0
1 parent aef5fc9 commit 25e1973

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

HISTORY.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22
33
Release History
44
===============
5+
4.0.0
6+
++++++
7+
* [Breaking Change] Dropped the dependency on `tree.json` file in aaz repo (#409)
8+
* Support `AnyType` schema and argument, require azure-cli-core >= 2.70.0 (#457)
9+
* Enhance performance of `aaz-dev command-model verify` (#433)
10+
* Fix error message when condition arguments are hidden (#436)
11+
* Fix swagger readme file parse (#440)(#441)
12+
* Replace inflect library by pluralizer to singular name (#437)
13+
* Support githooks in aaz repo (#448)(#452)
14+
* Improve UI (#455)(#409)
15+
* typespec: Add basic response for lro delete operation (#435)
16+
* typespec: update tsp compiler to 0.64.0 and liftr 0.7.0 (#445)
17+
* typespec: fix readonly property (#446)
18+
* typespec: support the literal type (#447)
19+
* typespec: adjust azure resource justification (#449)
20+
* typespec: support `x-ms-identifiers` and `x-ms-secret` (#450)
21+
522
3.2.0
623
++++++
724
* Handle swagger 204 response (#426)

docs/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ github:
3636
pypi: https://pypi.org/project/aaz-dev/
3737

3838
# TODO: get version number from github
39-
version: v3.2.0
39+
version: v4.0.0
4040

4141
# Build settings
4242
theme: minima

src/aaz_dev/utils/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
class Config:
77

8-
MIN_CLI_CORE_VERSION = version.parse("2.67.0")
8+
MIN_CLI_CORE_VERSION = version.parse("2.70.0")
99

1010
AAZ_PATH = os.environ.get("AAZ_PATH", None)
1111
SWAGGER_PATH = os.environ.get("AAZ_SWAGGER_PATH", None)

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
_MAJOR, _MINOR, _PATCH, _SUFFIX = ("3", "2", "0", "")
2+
_MAJOR, _MINOR, _PATCH, _SUFFIX = ("4", "0", "0", "")
33

44
# _PATCH: On main and in a nightly release the patch should be one ahead of the last released build.
55
# _SUFFIX: This is mainly for nightly builds which have the suffix ".dev$DATE". See

0 commit comments

Comments
 (0)