diff --git a/README.md b/README.md
index 36fd3fc157f9bd58ef548efecac66e3a4296acd7..eb9d3a1103e6da6e43bddf855d8aac5cdf6296b4 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.3](https://github.com/mwclient/mwclient/archive/v0.9.3.zip)
+[version 0.10.0](https://github.com/mwclient/mwclient/archive/v0.10.0.zip)
 is [available through PyPI](https://pypi.python.org/pypi/mwclient):
 
 ```
diff --git a/mwclient/client.py b/mwclient/client.py
index 1b1f57f49e04ec3dfe3d6080ade039c5de727d13..a0f06fd1ecea54b9ae575175bd4e097255d344a8 100644
--- a/mwclient/client.py
+++ b/mwclient/client.py
@@ -24,7 +24,7 @@ try:
 except ImportError:
     gzip = None
 
-__version__ = '0.9.3'
+__version__ = '0.10.0'
 
 log = logging.getLogger(__name__)
 
diff --git a/setup.cfg b/setup.cfg
index 1095f388b5b67d2862aab16759f0940447f1634b..4e19d941810bae12a50a68874ed5a1856e2c4827 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 0.9.3
+current_version = 0.10.0
 commit = True
 tag = True
 
@@ -21,6 +21,7 @@ universal = 1
 addopts = --cov mwclient test
 
 [flake8]
-ignore =
-     E501  # Line too long
-     W503  # Line break before binary operator
+ignore = 
+	E501  # Line too long
+	W503  # Line break before binary operator
+
diff --git a/setup.py b/setup.py
index edd8f61ea74d955ebc49cbe47586c3afebfbf007..ea45fcef9a878870202a22f81cc03ab3fe1681b2 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.3',  # Use bumpversion to update
+      version='0.10.0',  # Use bumpversion to update
       description='MediaWiki API client',
       long_description=README,
       long_description_content_type='text/markdown',