diff --git a/README.md b/README.md
index 57295f7b84a2ff8a707e20ada872db9b2d75b273..1d0d52928c490dd43cd942625d667b6b07bb7958 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 f1baaf1427cc14aa375ff380daf004d49cad33dd..a64e15cb1eed03fdfaf4c82ab9b6743c38641e83 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 1d1c09daa38c453db9a624d7d0f251e01d0be051..a80ae87c96b785690017b4e9eddc99bd3be59cc9 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',