diff --git a/src/authV2/HISTORY.rst b/src/authV2/HISTORY.rst index 1e6a03ca829..d262394832b 100644 --- a/src/authV2/HISTORY.rst +++ b/src/authV2/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +1.0.0 +++++++ +* Update az webapp auth openid-connect add "scopes" parameter description to include how to add multiple scopes. Bump major version as requested. + 0.1.3 ++++++ * BREAKING CHANGE: remove output for `az webapp auth-classic update`. @@ -13,4 +17,4 @@ Release History 0.1.0 ++++++ -* Initial release. \ No newline at end of file +* Initial release. diff --git a/src/authV2/azext_authV2/_params.py b/src/authV2/azext_authV2/_params.py index f57170b38d0..26c8f171909 100644 --- a/src/authV2/azext_authV2/_params.py +++ b/src/authV2/azext_authV2/_params.py @@ -160,7 +160,7 @@ def load_arguments(self, _): c.argument('openid_configuration', options_list=['--openid-configuration'], help='The endpoint that contains all the configuration endpoints for the provider.') c.argument('scopes', options_list=['--scopes'], - help='A list of the scopes that should be requested while authenticating.') + help='A space separated list of the scopes that should be requested while authenticating.') c.argument('client_secret', options_list=['--client-secret'], help='The application secret of the app used for login.') c.argument('yes', options_list=['--yes', '-y'], help='Do not prompt for confirmation.', action='store_true') diff --git a/src/authV2/setup.py b/src/authV2/setup.py index 07f24db0f2a..63f25d29513 100644 --- a/src/authV2/setup.py +++ b/src/authV2/setup.py @@ -14,7 +14,7 @@ from distutils import log as logger logger.warn("Wheel is not available, disabling bdist_wheel hook") -VERSION = '0.1.3' +VERSION = '1.0.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers