From 7d841514de40ec1973ba7de7e4ff7059b6e98d8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl> Date: Fri, 27 Dec 2019 15:23:34 +0100 Subject: [PATCH] version bump to 0.97a1 --- CHANGELOG.md | 29 ++++++++++++++--------------- coolamqp/uplink/handshake.py | 2 +- setup.cfg | 2 +- 3 files changed, 16 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d9b8b7..61d21e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,37 +1,41 @@ -* v0.96: +# v0.97: + +* _TBA_ + +# v0.96: * Python 3.6 and 3.7 officially supported and tested against. Also same done for PyPY 3.5 * fixing #40 * added #32 -* v0.95: +# v0.95: * multiple bugs fixed -* v0.94: +# v0.94: _version skipped_ -* v0.93: +# v0.93: * Large refactor of XML schema compiler -* v0.92: +# v0.92: * Added `on_fail` event handler - fired upon connection loss -* v0.91: +# v0.91: * removed annoying warnings -* v0.90: +# v0.90: * first release with a *stable API* * You can pick how your received _message.body_ will look like - bytes, a zero-copy-for-short-messages memoryview, or maybe a totally zero-copy list of memoryviews? -* v0.89.1: +# v0.89.1: * **Critical bugfix**: messages larger than a frame got corrupted -* v0.89: +# v0.89: * Events are no longer timestamped by CoolAMQP, it's your job now * You can delete queues (_Cluster.delete_queue_) * Race condition _Connection.start_ fixed @@ -42,12 +46,7 @@ _version skipped_ * Consumer being cancelled for any reason * Consumer being cancelled with a CCN -* v0.88: +# v0.88: * Cluster.start will RuntimeError if called more than once * Cluster.shutdown will RuntimeError if called without .start * Warning with content list is shorter - - -Latest: -* stability bug fixes -* ... diff --git a/coolamqp/uplink/handshake.py b/coolamqp/uplink/handshake.py index ad8b582..2338627 100644 --- a/coolamqp/uplink/handshake.py +++ b/coolamqp/uplink/handshake.py @@ -24,7 +24,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.96', 'S')), + (b'version', (b'0.97a1', 'S')), (b'copyright', (b'Copyright (C) 2016-2017 DMS Serwis', 'S')), ( b'information', ( diff --git a/setup.cfg b/setup.cfg index 3ef100c..079e26a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [metadata] description-file = README.md name = CoolAMQP -version = 0.96 +version = 0.97a1 license = MIT License classifiers = Programming Language :: Python -- GitLab