Skip to content

Commit

Permalink
Release 0.7.2
Browse files Browse the repository at this point in the history
- Add zip_safe flag
  • Loading branch information
danmichaelo committed Jul 18, 2015
1 parent 544e687 commit 20428a1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.rst
Expand Up @@ -20,8 +20,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.7.1 <https://github.com/mwclient/mwclient/archive/v0.7.1.zip>`_
was released on 23 November 2014, and is `available through PyPI <https://pypi.python.org/pypi/mwclient>`_:
`version 0.7.2 <https://github.com/mwclient/mwclient/archive/v0.7.2.zip>`_
was released on 18 July 2015, and is `available through PyPI <https://pypi.python.org/pypi/mwclient>`_:

.. code-block:: console
Expand Down Expand Up @@ -108,7 +108,7 @@ following example:

.. code-block:: python
useragent = 'YourBot, based on mwclient v0.6.5. Run by User:You, you@gmail.com'
useragent = 'YourBot, based on mwclient v0.7.2. Run by User:You, you@gmail.com'
site = mwclient.Site(('https', 'en.wikipedia.org'), clients_useragent=useragent)
Expand Down
6 changes: 5 additions & 1 deletion RELEASE-NOTES.md
@@ -1,9 +1,13 @@
# Release Notes for mwclient

## Changes in version 0.7.2

## Changes in version 0.8.0

This is the development version of mwclient.

## Changes in version 0.7.2


* [2014-11-28] [@c-martinez](https://github.com/c-martinez):
Add `continue` parameter to all queries.
[#73](https://github.com/mwclient/mwclient/issues/73).
Expand Down
2 changes: 1 addition & 1 deletion mwclient/client.py
Expand Up @@ -29,7 +29,7 @@
except ImportError:
gzip = None

__ver__ = '0.7.2.dev1'
__ver__ = '0.7.2'

log = logging.getLogger(__name__)

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Expand Up @@ -39,7 +39,7 @@ def run_tests(self):
requirements.append('ordereddict')

setup(name='mwclient',
version='0.7.2.dev1', # Rember to also update __ver__ in client.py
version='0.7.2', # Rember to also update __ver__ in client.py
description='MediaWiki API client',
long_description=README,
classifiers=[
Expand All @@ -55,5 +55,6 @@ def run_tests(self):
packages=['mwclient'],
cmdclass={'test': PyTest},
tests_require=['pytest-pep8', 'pytest-cache', 'pytest', 'responses>=0.3.0'],
install_requires=requirements
install_requires=requirements,
zip_safe=True
)

0 comments on commit 20428a1

Please sign in to comment.