diff --git a/README.rst b/README.rst
index 39b0d3f4ed9ec7fdda1d87a604e79a4b8a958bee..fd7fe23760203409e10ab752f41771b81ca9cbfc 100644
--- a/README.rst
+++ b/README.rst
@@ -43,8 +43,8 @@ which provides access to most API functionality.
 It works with Python 2.7, 3.3 and above, and supports MediaWiki 1.16 and above.
 For functions not available in the current MediaWiki, a ``MediaWikiVersionError`` is raised.
 
-The current stable `version 0.8.4 <https://github.com/mwclient/mwclient/archive/v0.8.4.zip>`_
-was released on 23 February 2017, and is `available through PyPI <https://pypi.python.org/pypi/mwclient>`_:
+The current stable `version 0.8.5 <https://github.com/mwclient/mwclient/archive/v0.8.5.zip>`_
+was released on 18 May 2017, and is `available through PyPI <https://pypi.python.org/pypi/mwclient>`_:
 
 .. code-block:: console
 
diff --git a/mwclient/client.py b/mwclient/client.py
index 59eba7af17e46bfd0fbccca76a8361124c76c862..98af0488864332cfa02feef2951bb975ca08ac34 100644
--- a/mwclient/client.py
+++ b/mwclient/client.py
@@ -24,7 +24,7 @@ try:
 except ImportError:
     gzip = None
 
-__ver__ = '0.8.4'
+__ver__ = '0.8.5'
 
 log = logging.getLogger(__name__)
 
diff --git a/setup.py b/setup.py
index 8b76aa0e2d1e4d9850badeab0a0e723ab7786e87..a40d39e5bbcaff1803fc7cd48ee906c6bd14618d 100644
--- a/setup.py
+++ b/setup.py
@@ -39,7 +39,7 @@ if sys.version_info < (2, 7):
     requirements.append('ordereddict')
 
 setup(name='mwclient',
-      version='0.8.4',  # Rember to also update __ver__ in client.py
+      version='0.8.5',  # Rember to also update __ver__ in client.py and README.rst
       description='MediaWiki API client',
       long_description=README,
       classifiers=[