diff --git a/src/aosm/HISTORY.rst b/src/aosm/HISTORY.rst index b214088e7ab..fcb94251483 100644 --- a/src/aosm/HISTORY.rst +++ b/src/aosm/HISTORY.rst @@ -2,6 +2,11 @@ Release History =============== +2.0.0b6 +++++++++ +* Updating genson dependency to 1.3.0 to fix update/install issues with azure cli version 2.84.0. +* This version requires a minimum of 2.78.0 Azure core CLI. See install instructions: https://github.com/MicrosoftDocs/azure-docs-cli/blob/main/docs-ref-conceptual/Latest-version/install-azure-cli.md + 2.0.0b5 ++++++++ * Remove `__import__('pkg_resources').declare_namespace(__name__)` from `vendored_sdks/azure_storagev2/__init__.py` to fix the namespace package issue. diff --git a/src/aosm/azext_aosm/azext_metadata.json b/src/aosm/azext_aosm/azext_metadata.json index e506328978c..36c95b47e03 100644 --- a/src/aosm/azext_aosm/azext_metadata.json +++ b/src/aosm/azext_aosm/azext_metadata.json @@ -1,4 +1,4 @@ { "azext.isPreview": true, - "azext.minCliCoreVersion": "2.70.0" + "azext.minCliCoreVersion": "2.78.0" } \ No newline at end of file diff --git a/src/aosm/azext_aosm/vendored_sdks/azure_storagev2/__init__.py b/src/aosm/azext_aosm/vendored_sdks/azure_storagev2/__init__.py index c5263f74db4..b40e9df40ea 100644 --- a/src/aosm/azext_aosm/vendored_sdks/azure_storagev2/__init__.py +++ b/src/aosm/azext_aosm/vendored_sdks/azure_storagev2/__init__.py @@ -1,4 +1,4 @@ # -------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- +# -------------------------------------------------------------------------------------------- \ No newline at end of file diff --git a/src/aosm/setup.py b/src/aosm/setup.py index b3d2640600a..c2c7f6cd53c 100644 --- a/src/aosm/setup.py +++ b/src/aosm/setup.py @@ -17,7 +17,7 @@ # Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = "2.0.0b5" +VERSION = "2.0.0b6" # The full list of classifiers is available at @@ -36,7 +36,7 @@ DEPENDENCIES = [ "oras==0.1.30", "jinja2==3.1.6", - "genson==1.2.2", + "genson==1.3.0", "ruamel.yaml==0.18.6", ]