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 tolerance to key management library packages. #8769

Merged
merged 3 commits into from
Mar 12, 2019
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
3 changes: 3 additions & 0 deletions src/command_modules/azure-cli-backup/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

Release History
===============
1.2.2
+++++
* Minor fixes.

1.2.1
+++++
Expand Down
6 changes: 3 additions & 3 deletions src/command_modules/azure-cli-backup/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
logger.warn("Wheel is not available, disabling bdist_wheel hook")
cmdclass = {}

VERSION = "1.2.1"
VERSION = "1.2.2"

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand All @@ -31,8 +31,8 @@
]

DEPENDENCIES = [
'azure-mgmt-recoveryservices==0.1.0',
'azure-mgmt-recoveryservicesbackup==0.1.1',
'azure-mgmt-recoveryservices~=0.1.1',
'azure-mgmt-recoveryservicesbackup~=0.1.2',
'azure-cli-core'
]

Expand Down
4 changes: 4 additions & 0 deletions src/command_modules/azure-cli-dla/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Release History
===============
0.2.5
+++++
* Minor fixes.

0.2.4
+++++
* Minor fixes.
Expand Down
4 changes: 2 additions & 2 deletions src/command_modules/azure-cli-dla/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
cmdclass = {}


VERSION = "0.2.4"
VERSION = "0.2.5"
# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
CLASSIFIERS = [
Expand All @@ -35,7 +35,7 @@

DEPENDENCIES = [
'azure-mgmt-datalake-store==0.5.0',
'azure-mgmt-datalake-analytics==0.2.0',
'azure-mgmt-datalake-analytics~=0.2.1',
'azure-cli-core',
]

Expand Down