Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/aosm/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/aosm/azext_aosm/azext_metadata.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"azext.isPreview": true,
"azext.minCliCoreVersion": "2.70.0"
"azext.minCliCoreVersion": "2.78.0"
}
Original file line number Diff line number Diff line change
@@ -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.
# --------------------------------------------------------------------------------------------
# --------------------------------------------------------------------------------------------
4 changes: 2 additions & 2 deletions src/aosm/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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",
]

Expand Down
Loading