From 3a7b96cae9d5105764f0aae33db53d6fa4dda8a7 Mon Sep 17 00:00:00 2001 From: Ted Chambers Date: Tue, 9 Oct 2018 15:30:48 -0400 Subject: [PATCH 1/2] Fix for msrest 0.6.0 breaking change --- vsts/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vsts/setup.py b/vsts/setup.py index 5b0c95a1..23ab3338 100644 --- a/vsts/setup.py +++ b/vsts/setup.py @@ -16,7 +16,7 @@ # http://pypi.python.org/pypi/setuptools REQUIRES = [ - "msrest>=0.5.0" + "msrest>=0.5.0,<0.6.0" ] CLASSIFIERS = [ From 16d31c84ee522ba582e99f0844fd1b7d211096d8 Mon Sep 17 00:00:00 2001 From: Ted Chambers Date: Tue, 9 Oct 2018 15:32:20 -0400 Subject: [PATCH 2/2] bump version to 0.1.18 --- vsts/setup.py | 2 +- vsts/vsts/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vsts/setup.py b/vsts/setup.py index 23ab3338..b9743ceb 100644 --- a/vsts/setup.py +++ b/vsts/setup.py @@ -6,7 +6,7 @@ from setuptools import setup, find_packages NAME = "vsts" -VERSION = "0.1.17" +VERSION = "0.1.18" # To install the library, run the following # diff --git a/vsts/vsts/version.py b/vsts/vsts/version.py index 93143453..9506f0cd 100644 --- a/vsts/vsts/version.py +++ b/vsts/vsts/version.py @@ -3,4 +3,4 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -VERSION = "0.1.17" +VERSION = "0.1.18"