Skip to content

Commit

Permalink
Bump version: 0.8.5 → 0.8.6
Browse files Browse the repository at this point in the history
  • Loading branch information
danmichaelo committed Jul 31, 2017
1 parent f1dc1c2 commit 83951bf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -43,7 +43,7 @@ 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.5 <https://github.com/mwclient/mwclient/archive/v0.8.5.zip>`_
The current stable `version 0.8.6 <https://github.com/mwclient/mwclient/archive/v0.8.6.zip>`_
was released on 18 May 2017, and is `available through PyPI <https://pypi.python.org/pypi/mwclient>`_:

.. code-block:: console
Expand Down
2 changes: 1 addition & 1 deletion mwclient/client.py
Expand Up @@ -24,7 +24,7 @@
except ImportError:
gzip = None

__ver__ = '0.8.5'
__ver__ = '0.8.6'

log = logging.getLogger(__name__)

Expand Down
9 changes: 5 additions & 4 deletions setup.cfg
@@ -1,11 +1,11 @@
[aliases]
test=pytest

[bumpversion]
current_version = 0.8.5
current_version = 0.8.6
commit = True
tag = True

[aliases]
test = pytest

[bumpversion:file:setup.py]

[bumpversion:file:mwclient/client.py]
Expand All @@ -18,3 +18,4 @@ universal = 1
[tool:pytest]
pep8ignore = E501 W602
addopts = -v --pep8 tests mwclient --cov mwclient

2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -9,7 +9,7 @@
README = open(os.path.join(here, 'README.rst')).read()

setup(name='mwclient',
version='0.8.5', # Use bumpversion to update
version='0.8.6', # Use bumpversion to update
description='MediaWiki API client',
long_description=README,
classifiers=[
Expand Down

0 comments on commit 83951bf

Please sign in to comment.