diff --git a/CHANGELOG.md b/CHANGELOG.md index 7abe425250c0cb54ef78028295a3b92344010388..8d9b8b7389e97eda6525200a3af2a5429f107ef1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ * Python 3.6 and 3.7 officially supported and tested against. Also same done for PyPY 3.5 * fixing #40 +* added #32 * v0.95: diff --git a/coolamqp/uplink/handshake.py b/coolamqp/uplink/handshake.py index f1829f5bb34f942bb327544b4ae65035615dbac1..c62d727b49fe8be05596fb3153f8cb3d1273ee81 100644 --- a/coolamqp/uplink/handshake.py +++ b/coolamqp/uplink/handshake.py @@ -23,7 +23,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.91', 'S')), + (b'version', (b'0.96', 'S')), (b'copyright', (b'Copyright (C) 2016-2017 DMS Serwis', 'S')), ( b'information', ( diff --git a/setup.cfg b/setup.cfg index b20709d171892e02a6fdae47f7befb864dc9f902..3ef100c0a19a13bb20256394603f8e315ab4d230 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [metadata] description-file = README.md name = CoolAMQP -version = 0.96a2 +version = 0.96 license = MIT License classifiers = Programming Language :: Python