diff --git a/HISTORY.rst b/HISTORY.rst index 88257f4a1..869ef3d67 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,15 @@ Release History =============== +0.10.5 ++++++++++++++++ + +**Azure Digital Twins updates** + +* Breaking change on the `--tags` parameter for `az dt create`. The prior input format of --tags "a=b;c=d" has been + changed to --tags a=b c=d to be more consistent with other Az CLI tag formats. + + 0.10.4 +++++++++++++++ diff --git a/azext_iot/constants.py b/azext_iot/constants.py index 0d4577d68..b02b5052e 100644 --- a/azext_iot/constants.py +++ b/azext_iot/constants.py @@ -7,7 +7,7 @@ import os -VERSION = "0.10.4" +VERSION = "0.10.5" EXTENSION_NAME = "azure-iot" EXTENSION_ROOT = os.path.dirname(os.path.abspath(__file__)) EXTENSION_CONFIG_ROOT_KEY = "iotext"