Skip to content

Commit

Permalink
Bump version: 0.9.3 → 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danmichaelo committed Aug 3, 2019
1 parent 7fb5871 commit eeb8a25
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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):

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

__version__ = '0.9.3'
__version__ = '0.10.0'

log = logging.getLogger(__name__)

Expand Down
9 changes: 5 additions & 4 deletions setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.9.3
current_version = 0.10.0
commit = True
tag = True

Expand All @@ -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

2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -12,7 +12,7 @@
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',
Expand Down

0 comments on commit eeb8a25

Please sign in to comment.