From 50ec9bd790819c378b2030691b254053e4dd9da2 Mon Sep 17 00:00:00 2001 From: Travis Prescott Date: Wed, 24 Oct 2018 17:14:52 -0700 Subject: [PATCH] Fix #7659 --- src/command_modules/azure-cli-cosmosdb/HISTORY.rst | 4 ++++ src/command_modules/azure-cli-cosmosdb/setup.py | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) 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' ]