Skip to content

Commit

Permalink
release v2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
necusjz committed Dec 13, 2023
1 parent a6c47bc commit 0ce193f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
Release History
===============

2.5.0
++++++
* Ignore `--subscription` generation when it has alias (#318)
* Fix data-plane generation issue (#317)
* Fix bug to render dynamic endpoint client (#314)
* Add documentation for data-plane dynamic endpoint config (#315)

2.4.0
++++++
* Support data plane client with dynamic endpoint fetched from a response. (#311)
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: v2.4.0
version: v2.5.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.54.0")
MIN_CLI_CORE_VERSION = version.parse("2.55.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 = ("2", "4", "0", "")
_MAJOR, _MINOR, _PATCH, _SUFFIX = ("2", "5", "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 0ce193f

Please sign in to comment.