diff --git a/README.md b/README.md
index e6041bdc122347ecd9e5a901caa911df737d522b..6d8788cafa37431d5ac0bad3194725af0484b639 100644
--- a/README.md
+++ b/README.md
@@ -32,7 +32,7 @@ For functions not available in the current MediaWiki,
 a `MediaWikiVersionError` is raised.
 
 The current stable
-[version 0.9.2](https://github.com/mwclient/mwclient/archive/v0.9.2.zip)
+[version 0.9.3](https://github.com/mwclient/mwclient/archive/v0.9.3.zip)
 is [available through PyPI](https://pypi.python.org/pypi/mwclient):
 
 ```
diff --git a/mwclient/client.py b/mwclient/client.py
index 4f39bb44fb92cd4e3feb6261a0d5709f75712235..c4a9bff4f9d8c48da45a867070e6237e4cb13d5e 100644
--- a/mwclient/client.py
+++ b/mwclient/client.py
@@ -24,7 +24,7 @@ try:
 except ImportError:
     gzip = None
 
-__ver__ = '0.9.2'
+__ver__ = '0.9.3'
 
 log = logging.getLogger(__name__)
 
diff --git a/setup.cfg b/setup.cfg
index ba13f56eee1237eae2f9b2e556c2792d63c1d6c2..8b173f4798f40a0d81e27dc01f3af7450d7eba96 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 0.9.2
+current_version = 0.9.3
 commit = True
 tag = True
 
diff --git a/setup.py b/setup.py
index c6951ea21492bfb2a04047ac96aaf33cd9b3d8c4..ec526b942fb468bb57f6fe610caf3b41385f1ab0 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ needs_pytest = set(['pytest', 'test', 'ptr']).intersection(sys.argv)
 pytest_runner = ['pytest-runner'] if needs_pytest else []
 
 setup(name='mwclient',
-      version='0.9.2',  # Use bumpversion to update
+      version='0.9.3',  # Use bumpversion to update
       description='MediaWiki API client',
       long_description=README,
       long_description_content_type='text/markdown',