diff --git a/HISTORY.rst b/HISTORY.rst index c7fbe3dd..5a376bfe 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,14 @@ Release History =============== +0.19.1 +++++++ +* Add pre_instance_create, post_instance_create, pre_instance_delete, post_instance_delete callbacks (#191) +* When generating subresource commands, set default identifier to 'name' if the element of array contains 'id' and 'name' properties (#192) +* Fix array argument element class type display issue (#193) +* Compact json file in aaz output (#194) +* Support 'uri' format in swagger, support 'x-cadl-generated' property in swagger (#195) + 0.19.0 ++++++ * Feature support subcommand modification inheritance (#184) diff --git a/version.py b/version.py index 15f6d860..ef5142f5 100644 --- a/version.py +++ b/version.py @@ -1,5 +1,5 @@ -_MAJOR, _MINOR, _PATCH, _SUFFIX = ("0", "19", "0", "") +_MAJOR, _MINOR, _PATCH, _SUFFIX = ("0", "19", "1", "") # _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