From 63f1db869aef1d3588bc2ddecfd08407d12cdd80 Mon Sep 17 00:00:00 2001 From: Steven Graham <1858109+scragraham@users.noreply.github.com> Date: Wed, 11 Apr 2018 23:05:22 -0500 Subject: [PATCH 1/4] Version bump to 3.5.1 --- appscale/tools/local_state.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/appscale/tools/local_state.py b/appscale/tools/local_state.py index 07409055..f0a895a2 100644 --- a/appscale/tools/local_state.py +++ b/appscale/tools/local_state.py @@ -31,7 +31,7 @@ # The version of the AppScale Tools we're running on. -APPSCALE_VERSION = "3.5.0" +APPSCALE_VERSION = "3.5.1" class LocalState(object): diff --git a/setup.py b/setup.py index aeb23c30..3261c8b0 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ setup( name='appscale-tools', - version='3.5.0', + version='3.5.1', description='A set of command-line tools for interacting with AppScale', long_description=long_description, author='AppScale Systems, Inc.', From 3a44b29da7149b03c764e3d0d6704de1efdacc58 Mon Sep 17 00:00:00 2001 From: Steven Graham <1858109+scragraham@users.noreply.github.com> Date: Fri, 25 May 2018 11:45:00 -0500 Subject: [PATCH 2/4] Version bump to 3.5.2 --- appscale/tools/local_state.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/appscale/tools/local_state.py b/appscale/tools/local_state.py index f0a895a2..54729fde 100644 --- a/appscale/tools/local_state.py +++ b/appscale/tools/local_state.py @@ -31,7 +31,7 @@ # The version of the AppScale Tools we're running on. -APPSCALE_VERSION = "3.5.1" +APPSCALE_VERSION = "3.5.2" class LocalState(object): diff --git a/setup.py b/setup.py index 3261c8b0..f9e69718 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ setup( name='appscale-tools', - version='3.5.1', + version='3.5.2', description='A set of command-line tools for interacting with AppScale', long_description=long_description, author='AppScale Systems, Inc.', From 35300af0ba10d49cd1fbb1d0932f6068eef9313f Mon Sep 17 00:00:00 2001 From: Steven Graham <1858109+scragraham@users.noreply.github.com> Date: Tue, 26 Jun 2018 22:20:06 -0500 Subject: [PATCH 3/4] Version bump to 3.5.3 --- appscale/tools/local_state.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/appscale/tools/local_state.py b/appscale/tools/local_state.py index 54729fde..5afcd331 100644 --- a/appscale/tools/local_state.py +++ b/appscale/tools/local_state.py @@ -31,7 +31,7 @@ # The version of the AppScale Tools we're running on. -APPSCALE_VERSION = "3.5.2" +APPSCALE_VERSION = "3.5.3" class LocalState(object): diff --git a/setup.py b/setup.py index f9e69718..2bcc7673 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ setup( name='appscale-tools', - version='3.5.2', + version='3.5.3', description='A set of command-line tools for interacting with AppScale', long_description=long_description, author='AppScale Systems, Inc.', From 67cbcf3c7b3d4bef06fb973aa269b939575598fc Mon Sep 17 00:00:00 2001 From: Chris Donati Date: Tue, 12 Jun 2018 14:30:37 -0700 Subject: [PATCH 4/4] Limit msrest version Version 0.5 is not compatible with msrestazure<0.4.20. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2bcc7673..c52fae48 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ 'google-api-python-client==1.5.4', 'haikunator', 'httplib2', - 'msrest', + 'msrest<0.5', 'msrestazure<0.4.20', 'oauth2client==4.0.0', 'PyYAML',