Skip to content

Commit c4fd8e7

Browse files
mccoypchlowell
andauthored
[Key Vault] Update metadata for release (Azure#19286)
Co-authored-by: Charles Lowell <chlowe@microsoft.com>
1 parent d1abd62 commit c4fd8e7

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

sdk/keyvault/azure-keyvault-administration/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 4.0.0b4 (Unreleased)
3+
## 4.0.0 (2020-06-17)
44
### Changed
55
- Key Vault API version 7.2 is now the default
66
- `KeyVaultAccessControlClient.delete_role_assignment` and
@@ -17,7 +17,7 @@
1717
`.delete_role_definition` return None
1818
- Changed parameter order in `KeyVaultAccessControlClient.set_role_definition`.
1919
`permissions` is now an optional keyword-only argument
20-
- Renamed `BackupOperation` to `KeyVaultBackupOperation`, and removed all but
20+
- Renamed `BackupOperation` to `KeyVaultBackupResult`, and removed all but
2121
its `folder_url` property
2222
- Removed `RestoreOperation` and `SelectiveKeyRestoreOperation` classes
2323
- Removed `KeyVaultBackupClient.begin_selective_restore`. To restore a

sdk/keyvault/azure-keyvault-administration/azure/keyvault/administration/_internal/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"KeyVaultClientBase",
2121
]
2222

23-
_VaultId = namedtuple("VaultId", ["vault_url", "collection", "name", "version"])
23+
_VaultId = namedtuple("_VaultId", ["vault_url", "collection", "name", "version"])
2424

2525

2626
def parse_vault_id(url):

sdk/keyvault/azure-keyvault-administration/azure/keyvault/administration/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# Licensed under the MIT License.
44
# ------------------------------------
55

6-
VERSION = "4.0.0b4"
6+
VERSION = "4.0.0"

sdk/keyvault/azure-keyvault-administration/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
# Version extraction inspired from 'requests'
3939
with open(os.path.join(PACKAGE_FOLDER_PATH, "_version.py"), "r") as fd:
40-
VERSION = re.search(r'^VERSION\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1)
40+
VERSION = re.search(r'^VERSION\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1) # type: ignore
4141

4242
if not VERSION:
4343
raise RuntimeError("Cannot find version information")
@@ -59,7 +59,7 @@
5959
author_email="azurekeyvault@microsoft.com",
6060
url="https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/keyvault/azure-keyvault-administration",
6161
classifiers=[
62-
"Development Status :: 4 - Beta",
62+
"Development Status :: 5 - Production/Stable",
6363
"Programming Language :: Python",
6464
"Programming Language :: Python :: 2",
6565
"Programming Language :: Python :: 2.7",

sdk/keyvault/azure-keyvault-certificates/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 4.3.0 (2020-06-08)
3+
## 4.3.0 (2020-06-17)
44
This is the last version to support Python 3.5. The next version will require Python 2.7 or 3.6+.
55
### Changed
66
- Key Vault API version 7.2 is now the default

sdk/keyvault/azure-keyvault-keys/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 4.4.0 (2020-06-08)
3+
## 4.4.0 (2020-06-17)
44
This is the last version to support Python 3.5. The next version will require Python 2.7 or 3.6+.
55
### Changed
66
- Key Vault API version 7.2 is now the default

sdk/keyvault/azure-keyvault-secrets/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 4.3.0 (2020-06-08)
3+
## 4.3.0 (2020-06-17)
44
This is the last version to support Python 3.5. The next version will require Python 2.7 or 3.6+.
55
### Fixed
66
- Correct typing for async paging methods

0 commit comments

Comments
 (0)