Skip to content

Commit

Permalink
Merge pull request #140 from kairu-ms/release-v0.12.0
Browse files Browse the repository at this point in the history
release-v0.12.0
  • Loading branch information
kairu-ms authored Oct 13, 2022
2 parents ebd769a + 26b46e7 commit c928514
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Release History
===============

0.12.0
++++++
* Disable Read only inherent in swagger translators (#139)
* Enable register_callback decorator (#129)

0.11.2
++++++
* Fix cls argument base inherent (#136)
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 @@ -4,7 +4,7 @@

class Config:

MIN_CLI_CORE_VERSION = version.parse("2.40.0")
MIN_CLI_CORE_VERSION = version.parse("2.41.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 = ("0", "11", "2", "")
_MAJOR, _MINOR, _PATCH, _SUFFIX = ("0", "12", "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 c928514

Please sign in to comment.