From 5fa50d4df1324ef678d58c625314e53bb229c594 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dan=20Michael=20O=2E=20Hegg=C3=B8?= <danmichaelo@gmail.com>
Date: Sun, 10 Jan 2016 23:23:53 +0100
Subject: [PATCH] Release 0.8.0

---
 README.rst         | 4 ++--
 RELEASE-NOTES.md   | 7 ++++++-
 mwclient/client.py | 2 +-
 setup.py           | 5 +++--
 4 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/README.rst b/README.rst
index 7021d57..2ff6bbf 100644
--- a/README.rst
+++ b/README.rst
@@ -38,8 +38,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.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>`_:
+`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>`_:
 
 .. code-block:: console
 
diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md
index bd9fe33..a9d5580 100644
--- a/RELEASE-NOTES.md
+++ b/RELEASE-NOTES.md
@@ -1,9 +1,14 @@
 # Release Notes for mwclient
 
+## Changes in version 0.8.1
+
+This is the development version of mwclient.
+
+* *No changes yet*
 
 ## Changes in version 0.8.0
 
-This is the development version of mwclient.
+Mwclient 0.8.0 was released on 10 January 2016.
 
 Upgrade notices / breaking changes:
 
diff --git a/mwclient/client.py b/mwclient/client.py
index 61c7168..90729ed 100644
--- a/mwclient/client.py
+++ b/mwclient/client.py
@@ -28,7 +28,7 @@ try:
 except ImportError:
     gzip = None
 
-__ver__ = '0.8.0.dev1'
+__ver__ = '0.8.0'
 
 log = logging.getLogger(__name__)
 
diff --git a/setup.py b/setup.py
index 88ca509..86be4b4 100644
--- a/setup.py
+++ b/setup.py
@@ -39,7 +39,7 @@ if sys.version_info < (2, 7):
     requirements.append('ordereddict')
 
 setup(name='mwclient',
-      version='0.8.0.dev1',  # Rember to also update __ver__ in client.py
+      version='0.8.0',  # Rember to also update __ver__ in client.py
       description='MediaWiki API client',
       long_description=README,
       classifiers=[
@@ -47,7 +47,8 @@ setup(name='mwclient',
           'Programming Language :: Python :: 2.6',
           'Programming Language :: Python :: 2.7',
           'Programming Language :: Python :: 3.3',
-          'Programming Language :: Python :: 3.4'
+          'Programming Language :: Python :: 3.4',
+          'Programming Language :: Python :: 3.5'
       ],
       keywords='mediawiki wikipedia',
       author='Bryan Tong Minh',
-- 
GitLab