diff --git a/coolamqp/__init__.py b/coolamqp/__init__.py
index a62bbe77031f0a09fe686cfacf9389f258be40b7..89cce377f16974a71844bec476e4aa4c91addc96 100644
--- a/coolamqp/__init__.py
+++ b/coolamqp/__init__.py
@@ -2,4 +2,4 @@
 from .cluster import ClusterNode, Cluster
 from .events import ConnectionDown, ConnectionUp, MessageReceived, ConsumerCancelled
 from .messages import Message, Exchange, Queue
-__version__ = '0.8'
+__version__ = '0.9'
diff --git a/setup.py b/setup.py
index b05926c2a5fe25b72b55bbfbe177b5342dfbf586..0eef86865f64aedf764ce03b70874e0cf3e6d868 100644
--- a/setup.py
+++ b/setup.py
@@ -9,12 +9,12 @@ def reqs():
 
 
 setup(name='CoolAMQP',
-      version='0.8',
+      version='0.9',
       description='AMQP client with sane reconnects',
       author='DMS Serwis s.c.',
       author_email='piotrm@smok.co',
       url='https://github.com/smok-serwis/coolamqp',
-      download_url='https://github.com/smok-serwis/coolamqp/archive/v0.8.zip',
+      download_url='https://github.com/smok-serwis/coolamqp/archive/v0.9.zip',
       keywords=['amqp', 'pyamqp', 'rabbitmq', 'client', 'network', 'ha', 'high availability'],
       packages=['coolamqp', 'coolamqp.backends'],
       license='MIT License',
@@ -30,6 +30,9 @@ setup(name='CoolAMQP',
             'Programming Language :: Python :: 3.5',
             'Programming Language :: Python :: Implementation :: CPython',
             'Programming Language :: Python :: Implementation :: PyPy',
-            'Operating System :: OS Independent'
+            'Operating System :: OS Independent',
+            'Development Status :: 5 - Production/Stable',
+            'License :: OSI Approved :: MIT License',
+            'Topic :: Software Development :: Libraries'
       ]
      )