Skip to content

Commit

Permalink
Merge pull request #308 from kairu-ms/release-2.3.0
Browse files Browse the repository at this point in the history
Release v2.3.0
  • Loading branch information
kairu-ms committed Nov 15, 2023
2 parents 18404c9 + 99d68f7 commit d469845
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Expand Up @@ -3,6 +3,11 @@
Release History
===============

2.3.0
++++++
* Support data-plane generation. (#307)
* Fix bug in swagger discriminator parse. (#305)

2.2.0
++++++
* Add `aaz-dev swagger export-resources` command. (#302)
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Expand Up @@ -36,7 +36,7 @@ github:
pypi: https://pypi.org/project/aaz-dev/

# TODO: get version number from github
version: v2.2.0
version: v2.3.0

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

class Config:

MIN_CLI_CORE_VERSION = version.parse("2.51.0")
MIN_CLI_CORE_VERSION = version.parse("2.54.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
@@ -1,5 +1,5 @@

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

0 comments on commit d469845

Please sign in to comment.