Skip to content

Commit

Permalink
Update release notes and bump version to 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
danmichaelo committed Feb 5, 2016
1 parent 1497c93 commit 3f58983
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -37,8 +37,8 @@ For functions not available in the current MediaWiki, a ``MediaWikiVersionError`

This framework was written by Bryan Tong Minh, who maintained the project until
version 0.6.5, released on 6 May 2011. The current stable
`version 0.8.0 <https://github.com/mwclient/mwclient/archive/v0.8.0.zip>`_
was released on 10 January 2016, and is `available through PyPI <https://pypi.python.org/pypi/mwclient>`_:
`version 0.8.1 <https://github.com/mwclient/mwclient/archive/v0.8.1.zip>`_
was released on 5 February 2016, and is `available through PyPI <https://pypi.python.org/pypi/mwclient>`_:

.. code-block:: console
Expand Down
9 changes: 8 additions & 1 deletion RELEASE-NOTES.md
@@ -1,11 +1,18 @@
# Release Notes for mwclient

## Changes in version 0.8.1
## Changes in version 0.8.2

This is the development version of mwclient.

## Changes in version 0.8.1

Mwclient 0.8.1 was released on 5 February 2016.

* [2016-01-23] [@Danmichaelo](https://github.com/Danmichaelo)
Add more options to `Site.parse`.
* [2016-02-05] [@tosher](https://github.com/tosher) [@AdamWill](https://github.com/AdamWill)
Fix GeneratorList with Python 3.
[#106](https://github.com/mwclient/mwclient/issues/106)

## Changes in version 0.8.0

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

__ver__ = '0.8.1.dev1'
__ver__ = '0.8.1'

log = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -39,7 +39,7 @@ def run_tests(self):
requirements.append('ordereddict')

setup(name='mwclient',
version='0.8.1.dev1', # Rember to also update __ver__ in client.py
version='0.8.1', # Rember to also update __ver__ in client.py
description='MediaWiki API client',
long_description=README,
classifiers=[
Expand Down

0 comments on commit 3f58983

Please sign in to comment.