From f062a4619b48ae278e2f8a0ad7ffab4c6e5e44b3 Mon Sep 17 00:00:00 2001
From: Piotr Maslanka <piotr.maslanka@henrietta.com.pl>
Date: Mon, 30 Jan 2017 22:40:44 +0100
Subject: [PATCH] ver bump

---
 README.md                    | 3 +++
 coolamqp/uplink/handshake.py | 2 +-
 setup.py                     | 4 ++--
 3 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index 57295f7..1d0d529 100644
--- a/README.md
+++ b/README.md
@@ -50,6 +50,9 @@ if you need every CPU cycle you can get.
 
 ## What's new
 
+* v0.89.2:
+  * TBA
+
 * v0.89.1:
   * **Critical bugfix**: messages larger than a frame got corrupted
 
diff --git a/coolamqp/uplink/handshake.py b/coolamqp/uplink/handshake.py
index f1baaf1..a64e15c 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.1', 'S')),
+        (b'version', (b'0.89.2', '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/setup.py b/setup.py
index 1d1c09d..a80ae87 100644
--- a/setup.py
+++ b/setup.py
@@ -4,12 +4,12 @@ from setuptools import setup
 
 
 setup(name=u'CoolAMQP',
-      version='0.89.1',
+      version='0.89.2',
       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.1.zip',
+      download_url='https://github.com/smok-serwis/coolamqp/archive/v0.89.2.zip',
       keywords=['amqp', 'rabbitmq', 'client', 'network', 'ha', 'high availability'],
       packages=[
           'coolamqp',
-- 
GitLab