Skip to content

Commit

Permalink
update default version (Azure#20195)
Browse files Browse the repository at this point in the history
* update default version

* update changelog
  • Loading branch information
xiangyan99 authored Aug 10, 2021
1 parent d2dc638 commit 216b41a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def __init__(
self,
credential, # type: "TokenCredential"
endpoint, # type: str
api_version=None, # type: Optional[str]
api_version=DEFAULT_API_VERSION, # type: Optional[str]
profile=KnownProfiles.default, # type: KnownProfiles
**kwargs # type: Any
):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def __init__(
self,
credential: "AsyncTokenCredential",
endpoint: str,
api_version: Optional[str] = None,
api_version: Optional[str] = DEFAULT_API_VERSION,
profile: KnownProfiles = KnownProfiles.default,
**kwargs # type: Any
) -> None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Updated API version to "2020-12-01" which is the default API version
- Added API version "2021-06-01-preview" support
- `ManagedPrivateEndpointsClient` is renamed to `VnetClient`

## 0.3.0 (2021-03-09)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def __init__(
self,
credential, # type: "TokenCredential"
endpoint, # type: str
api_version=None, # type: Optional[str]
api_version=DEFAULT_API_VERSION, # type: Optional[str]
profile=KnownProfiles.default, # type: KnownProfiles
**kwargs # type: Any
):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def __init__(
self,
credential: "AsyncTokenCredential",
endpoint: str,
api_version: Optional[str] = None,
api_version: Optional[str] = DEFAULT_API_VERSION,
profile: KnownProfiles = KnownProfiles.default,
**kwargs # type: Any
) -> None:
Expand Down

0 comments on commit 216b41a

Please sign in to comment.