diff --git a/src/command_modules/azure-cli-cosmosdb/HISTORY.rst b/src/command_modules/azure-cli-cosmosdb/HISTORY.rst index 764ffbcb9e1..1c4c36ab0f6 100644 --- a/src/command_modules/azure-cli-cosmosdb/HISTORY.rst +++ b/src/command_modules/azure-cli-cosmosdb/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +0.2.3 ++++++ +* Minor fixes. + 0.2.2 +++++ * `cosmosdb create`: Add `--enable-multiple-write-locations` support. diff --git a/src/command_modules/azure-cli-cosmosdb/setup.py b/src/command_modules/azure-cli-cosmosdb/setup.py index eee27b88ead..d72770a33d7 100644 --- a/src/command_modules/azure-cli-cosmosdb/setup.py +++ b/src/command_modules/azure-cli-cosmosdb/setup.py @@ -16,7 +16,7 @@ cmdclass = {} -VERSION = "0.2.2" +VERSION = "0.2.3" # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers CLASSIFIERS = [ @@ -34,7 +34,7 @@ DEPENDENCIES = [ - 'azure-mgmt-cosmosdb==0.5.0', + 'azure-mgmt-cosmosdb==0.5.1', 'azure-cli-core', 'pydocumentdb>=2.0.1' ]