diff --git a/src/redisenterprise/HISTORY.rst b/src/redisenterprise/HISTORY.rst index 5b94deec588..4f4b231ae92 100644 --- a/src/redisenterprise/HISTORY.rst +++ b/src/redisenterprise/HISTORY.rst @@ -2,6 +2,8 @@ Release History =============== +1.2.2 +- Added breaking change warning for upcoming release 1.2.1 - Added support for listing all SKUs a cluster can scale to. diff --git a/src/redisenterprise/_breaking_change.py b/src/redisenterprise/_breaking_change.py new file mode 100644 index 00000000000..4dae67fe212 --- /dev/null +++ b/src/redisenterprise/_breaking_change.py @@ -0,0 +1,8 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- +from azure.cli.core.breaking_change import register_required_flag_breaking_change, register_default_value_breaking_change, register_other_breaking_change + +register_required_flag_breaking_change('redisenterprise create', '--public-network-access') +register_default_value_breaking_change('redisenterprise create', '--access-keys-auth', 'Enabled', 'Disabled') diff --git a/src/redisenterprise/setup.py b/src/redisenterprise/setup.py index 96b7b8c4af5..49e17988e6a 100644 --- a/src/redisenterprise/setup.py +++ b/src/redisenterprise/setup.py @@ -10,7 +10,7 @@ # HISTORY.rst entry. -VERSION = '1.2.1' +VERSION = '1.2.2' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers