Skip to content

Commit

Permalink
remove msrestazure
Browse files Browse the repository at this point in the history
  • Loading branch information
Jing-song committed Oct 25, 2024
1 parent ea4af4c commit 0dda7aa
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions src/cloudservice/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

1.0.1
++++++
* Remove direct call to `msrestazure`

1.0.0
++++++
* `az cloud-service`: Add new command group `os-family` to support managing os family.
Expand Down
4 changes: 2 additions & 2 deletions src/cloudservice/azext_cloudservice/manual/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def _parse_roles(roles):


def _parse_lbs(lbs, cmd, resource_group_name):
from msrestazure.tools import resource_id, is_valid_resource_id
from azure.mgmt.core.tools import resource_id, is_valid_resource_id
from azure.cli.core.commands.client_factory import get_subscription_id

if not lbs:
Expand Down Expand Up @@ -121,7 +121,7 @@ def _parse_lbs(lbs, cmd, resource_group_name):


def _parse_secrets(secrets, cmd, resource_group_name):
from msrestazure.tools import resource_id, is_valid_resource_id
from azure.mgmt.core.tools import resource_id, is_valid_resource_id
from azure.cli.core.commands.client_factory import get_subscription_id

if not secrets:
Expand Down
2 changes: 1 addition & 1 deletion src/cloudservice/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from setuptools import setup, find_packages

# HISTORY.rst entry.
VERSION = '1.0.0'
VERSION = '1.0.1'
try:
from azext_cloudservice.manual.version import VERSION
except ImportError:
Expand Down

0 comments on commit 0dda7aa

Please sign in to comment.