From e4ed56bed2a497c444cae3747c8b32d1a8924c62 Mon Sep 17 00:00:00 2001 From: Vladimir Kalyuzhny Date: Sat, 25 Jul 2020 20:04:25 +0300 Subject: [PATCH 01/10] Updated "colorama" package to latest Latest version of colorama is 4.2 https://pypi.org/project/colorama/. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 003d5ce..e21180e 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ 'docker-py>=1.8.1,<2.0', 'six>=1.13.0', 'dpath<2', - 'colorama<0.4', + 'colorama<0.5', ] setup( From d89427be86c1a4f341397e2e2118525f54dcf037 Mon Sep 17 00:00:00 2001 From: Vladimir Kalyuzhny Date: Sat, 25 Jul 2020 20:20:25 +0300 Subject: [PATCH 02/10] Dropped old python versions for travis --- .travis.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b5b4996..8e88214 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,8 +4,6 @@ sudo: false python: - "2.7" - - "3.4" - - "3.5" - "3.6" - "3.7" - "3.8" From 3f3dd038ba9203c922f917704f9409cdfdd3a8f6 Mon Sep 17 00:00:00 2001 From: Vladimir Kalyuzhny Date: Sat, 25 Jul 2020 20:32:08 +0300 Subject: [PATCH 03/10] Bump version to 0.5.9 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e21180e..baa7ddc 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( name='fabricio', - version='0.5.8', + version='0.5.9', author='Rinat Khabibiev', author_email='srenskiy@gmail.com', packages=list(map('fabricio.'.__add__, find_packages('fabricio'))) + ['fabricio'], From 60681e1a66e7cb1d2211408d50a03b4251201ef9 Mon Sep 17 00:00:00 2001 From: Vladimir Kalyuzhny Date: Sun, 26 Jul 2020 08:28:53 +0300 Subject: [PATCH 04/10] Updated README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index f1c8903..ca03c52 100644 --- a/README.rst +++ b/README.rst @@ -76,7 +76,7 @@ Requirements Local ----- -- Python 2.7, 3.4*, 3.5*, 3.6*, 3.7*, 3.8* +- Python 2.7, 3.6*, 3.7*, 3.8* - (optional) Docker 1.9+ for building Docker images \* `Fabric3`_ is used for compatibility with Python 3.x From 591fbcfbdb9b8b50641dfa0bf52a5d9292000082 Mon Sep 17 00:00:00 2001 From: Vladimir Kalyuzhny Date: Sun, 26 Jul 2020 08:31:51 +0300 Subject: [PATCH 05/10] Updated changelog.rst --- changelog.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/changelog.rst b/changelog.rst index 694a12d..93927fd 100644 --- a/changelog.rst +++ b/changelog.rst @@ -1,6 +1,12 @@ Changelog ========= +Release 0.5.9 +------------- + +- Enhancement: updated "colorama" package to 0.4.x +- Enhancement: dropped old python versions for travis + Release 0.5.8 ------------- From 08a39bac9fb832f057779876ba0700483d03cfd4 Mon Sep 17 00:00:00 2001 From: Vladimir Kalyuzhny Date: Sun, 26 Jul 2020 17:50:27 +0300 Subject: [PATCH 06/10] Returned Python 3.5 to travis --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 8e88214..6093909 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ sudo: false python: - "2.7" + - "3.5" - "3.6" - "3.7" - "3.8" From dc51669ffb08ffb378b43010f9099ac18acc3b09 Mon Sep 17 00:00:00 2001 From: Vladimir Kalyuzhny Date: Sun, 26 Jul 2020 17:55:50 +0300 Subject: [PATCH 07/10] Updated README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index ca03c52..379205d 100644 --- a/README.rst +++ b/README.rst @@ -76,7 +76,7 @@ Requirements Local ----- -- Python 2.7, 3.6*, 3.7*, 3.8* +- Python 2.7, 3.5*, 3.6*, 3.7*, 3.8* - (optional) Docker 1.9+ for building Docker images \* `Fabric3`_ is used for compatibility with Python 3.x From 748c496793c23ff2e6c86a10ffec37b76302b6ce Mon Sep 17 00:00:00 2001 From: Vladimir Kalyuzhny Date: Sun, 26 Jul 2020 17:56:44 +0300 Subject: [PATCH 08/10] Removed Python 3.4 from setup.py --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index baa7ddc..9a22d4e 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,6 @@ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', From 6da1bacf2ca939bd2d0c7f2250ae7fe3f106a98f Mon Sep 17 00:00:00 2001 From: Vladimir Kalyuzhny Date: Fri, 31 Jul 2020 16:15:35 +0300 Subject: [PATCH 09/10] Updated version to 0.6 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9a22d4e..dc3a7df 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( name='fabricio', - version='0.5.9', + version='0.6', author='Rinat Khabibiev', author_email='srenskiy@gmail.com', packages=list(map('fabricio.'.__add__, find_packages('fabricio'))) + ['fabricio'], From eb0ed30cfb4c884aa908f720a53eba1573035d19 Mon Sep 17 00:00:00 2001 From: Vladimir Kalyuzhny Date: Fri, 31 Jul 2020 16:16:39 +0300 Subject: [PATCH 10/10] Updated changelog version to 0.6 --- changelog.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog.rst b/changelog.rst index 93927fd..82adaf6 100644 --- a/changelog.rst +++ b/changelog.rst @@ -1,7 +1,7 @@ Changelog ========= -Release 0.5.9 +Release 0.6 ------------- - Enhancement: updated "colorama" package to 0.4.x