Skip to content

Commit fedcf42

Browse files
authored
Merge pull request #493 from necusjz/release-4.3.0
release v4.3.0
2 parents 64501f5 + 7bfc6eb commit fedcf42

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

HISTORY.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22
33
Release History
44
===============
5+
4.3.0
6+
++++++
7+
* Fix api version mismatch in cli tab (#490)
8+
* Support get + patch on identity subcommand (#454)
9+
* Adjust azure-mgmt-core version to fix dep conflict (#487)
10+
* Add rfc1123 datetime (#485)
11+
* Update tsp compiler to 1.0.0 (#484)
12+
* Ignore single file for data plane tsp folder check (#483)
13+
* Add support for encoding and its default value (#470)
14+
* Adjust discriminator to reduce duplicated props (#471)
15+
* Add typespec-aaz emitter test and set prettier config (#481)
16+
* Fix empty subresource in subcommand (#480)
17+
518
4.2.0
619
++++++
720
* Fix issue caused by `or` operation in `isinstance` (#475)

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: v4.2.0
39+
version: v4.3.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.70.0")
8+
MIN_CLI_CORE_VERSION = version.parse("2.75.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 = ("4", "2", "0", "")
2+
_MAJOR, _MINOR, _PATCH, _SUFFIX = ("4", "3", "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)