Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add certificates library to Key Vault metapackage #10792

Merged
merged 2 commits into from
Apr 10, 2020
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
12 changes: 12 additions & 0 deletions sdk/keyvault/azure-keyvault/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Release History

## 4.1.0 (2020-04-10)
**Disclaimer**

This package and the `azure.keyvault` namespace does not contain code anymore. This package now installs three sub-packages instead:

* [azure-keyvault-certificates](https://pypi.org/project/azure-keyvault-certificates/)
* [azure-keyvault-keys](https://pypi.org/project/azure-keyvault-keys/)
* [azure-keyvault-secrets](https://pypi.org/project/azure-keyvault-secrets/)

All code needs to be adapted to use the new namespaces. See individual package readmes for details.


## 4.0.0 (2019-10-31)

**Disclaimer**
Expand Down
7 changes: 4 additions & 3 deletions sdk/keyvault/azure-keyvault/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setup(
name='azure-keyvault',
version='4.0.0',
version='4.1.0',
description='Microsoft Azure Key Vault Client Libraries for Python',
long_description=README + "\n\n" + CHANGELOG,
long_description_content_type="text/markdown",
Expand All @@ -38,7 +38,8 @@
],
zip_safe=False,
install_requires=[
'azure-keyvault-secrets~=4.0',
'azure-keyvault-keys~=4.0',
'azure-keyvault-certificates~=4.1',
'azure-keyvault-secrets~=4.1',
'azure-keyvault-keys~=4.1',
],
)