From f34cea1d3eab7aa8df6ea190522812cdb408a5cc Mon Sep 17 00:00:00 2001 From: Brian Korty Date: Wed, 3 Jul 2019 09:33:35 -0400 Subject: [PATCH 1/2] Deploy on python 3.6. Deploy on python 3.6 since python 3.7 is not currently a build target. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 183f927..2ddbc4b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,6 +20,6 @@ deploy: password: secure: IJVu1MUk2NtRprWkYL+prPRbWrDdSiP+L06S6xERqYnu+fy1ez8/zODazkQGKagXAAujbJK8OwyCgoMzCGDNHV3/NfFtz9dirGVAD2rXZ6AVfHjtEh31L2b2YzXEK0EnBMRsYRjsqLva6q7tfxzjMWKFria25wsd9bN8VlofNDQ= on: - python: 3.7 + python: 3.6 tags: true repo: sprockets/sprockets.mixins.amqp From 825a5ff2874a0427deb7191fc42d6885bdb348b4 Mon Sep 17 00:00:00 2001 From: Brian Korty Date: Wed, 3 Jul 2019 09:40:18 -0400 Subject: [PATCH 2/2] Bump version to 2.1.5. Bump the version to 2.1.5 --- docs/history.rst | 10 ++++++++-- sprockets/mixins/amqp/__init__.py | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/history.rst b/docs/history.rst index 9ed870b..cd6c46b 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -1,11 +1,15 @@ Version History =============== +`2.1.5`_ July 3, 2019 +--------------------- +- Remove official support for python versions less than 3.5 +- Add support for tornado 5.X releases + `2.1.4`_ Jan 24, 2019 --------------------- - Pin pika to 0.12.0, 0.11.0 has issues with Python 3.7 - `2.1.3`_ Jan 23, 2019 --------------------- - Pin pika to 0.11.0 @@ -73,7 +77,9 @@ Version History ---------------------- - Initial implementation -.. _Next Release: https://github.com/sprockets/sprockets.amqp/compare/2.1.3...HEAD +.. _Next Release: https://github.com/sprockets/sprockets.amqp/compare/2.1.5...HEAD +.. _2.1.5: https://github.com/sprockets/sprockets.amqp/compare/2.1.4...2.1.5 +.. _2.1.4: https://github.com/sprockets/sprockets.amqp/compare/2.1.3...2.1.4 .. _2.1.3: https://github.com/sprockets/sprockets.amqp/compare/2.1.2...2.1.3 .. _2.1.2: https://github.com/sprockets/sprockets.amqp/compare/2.1.1...2.1.2 .. _2.1.1: https://github.com/sprockets/sprockets.amqp/compare/2.1.0...2.1.1 diff --git a/sprockets/mixins/amqp/__init__.py b/sprockets/mixins/amqp/__init__.py index ceb1c46..a764f73 100644 --- a/sprockets/mixins/amqp/__init__.py +++ b/sprockets/mixins/amqp/__init__.py @@ -31,7 +31,7 @@ concurrent, ioloop, exceptions, pika = \ object(), object(), object(), object() -__version__ = '2.1.4' +__version__ = '2.1.5' LOGGER = logging.getLogger(__name__)