Skip to content

Commit

Permalink
Merge pull request #168 from necusjz/release-v0.16.0
Browse files Browse the repository at this point in the history
Release v0.16.0
  • Loading branch information
necusjz authored Dec 14, 2022
2 parents f1e8c5d + b1c9d45 commit f44b04a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
Release History
===============

0.16.0
++++++
* Support build-in keywords in property name generation (#167)
* Add portal CLI generator (#153)
* Support to generate property name starts with digit (#166)
* Support to modify default for array, dict and object arguments (#165)
* Fix `id_part` setup (#164)
* Disable `id_part` for create command and subcommand (#163)
* Support array index auto generate (#162)
* Support to modify argument options for subcommand (#161)
* Support subcommand generation (#154)
* Add FAQs for Swagger definition (#160)
* Fix `x-ms-skip-url-encoding` unparsed in Swagger (#159)

0.15.1
++++++
* Fix `workspace` bug on class argument unwrap (#155)
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.42.0")
MIN_CLI_CORE_VERSION = version.parse("2.43.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", "15", "1", "")
_MAJOR, _MINOR, _PATCH, _SUFFIX = ("0", "16", "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 f44b04a

Please sign in to comment.