From 22c759c999d88bf6d2dfa41cefa0dbc7b7498d6b Mon Sep 17 00:00:00 2001 From: Piotr Maslanka <piotr.maslanka@henrietta.com.pl> Date: Sun, 29 Jan 2017 21:10:37 +0100 Subject: [PATCH] version bump --- coolamqp/uplink/handshake.py | 2 +- docs/conf.py | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/coolamqp/uplink/handshake.py b/coolamqp/uplink/handshake.py index 8fb82e1..f1baaf1 100644 --- a/coolamqp/uplink/handshake.py +++ b/coolamqp/uplink/handshake.py @@ -22,7 +22,7 @@ CLIENT_DATA = [ # because RabbitMQ is some kind of a fascist and does not allow # these fields to be of type short-string (b'product', (b'CoolAMQP', 'S')), - (b'version', (b'0.89', 'S')), + (b'version', (b'0.89.1', 'S')), (b'copyright', (b'Copyright (C) 2016-2017 DMS Serwis', 'S')), (b'information', (b'Licensed under the MIT License.\nSee https://github.com/smok-serwis/coolamqp for details', 'S')), (b'capabilities', ([(capa, (True, 't')) for capa in SUPPORTED_EXTENSIONS], 'F')), diff --git a/docs/conf.py b/docs/conf.py index a051628..d39ce2f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,7 +59,7 @@ author = u'DMS Serwis s.c.' # The short X.Y version. version = '0.89' # The full version, including alpha/beta/rc tags. -release = u'0.89' +release = u'0.89.1-rc' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 141f331..1d1c09d 100644 --- a/setup.py +++ b/setup.py @@ -4,12 +4,12 @@ from setuptools import setup setup(name=u'CoolAMQP', - version='0.89', + version='0.89.1', description=u'Very fast pure-Python AMQP client', author=u'DMS Serwis s.c.', author_email=u'piotrm@smok.co', url=u'https://github.com/smok-serwis/coolamqp', - download_url='https://github.com/smok-serwis/coolamqp/archive/v0.89.zip', + download_url='https://github.com/smok-serwis/coolamqp/archive/v0.89.1.zip', keywords=['amqp', 'rabbitmq', 'client', 'network', 'ha', 'high availability'], packages=[ 'coolamqp', -- GitLab