From 3f5898345059985e9f331ae16bf9f5d6d86edf80 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dan=20Michael=20O=2E=20Hegg=C3=B8?= <danmichaelo@gmail.com>
Date: Fri, 5 Feb 2016 22:48:15 +0100
Subject: [PATCH] Update release notes and bump version to 0.8.1

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

diff --git a/README.rst b/README.rst
index f71b938..0c2ae2d 100644
--- a/README.rst
+++ b/README.rst
@@ -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
 
diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md
index 6e1655c..621c1c5 100644
--- a/RELEASE-NOTES.md
+++ b/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
 
diff --git a/mwclient/client.py b/mwclient/client.py
index 31c4e1b..1fa5fed 100644
--- a/mwclient/client.py
+++ b/mwclient/client.py
@@ -28,7 +28,7 @@ try:
 except ImportError:
     gzip = None
 
-__ver__ = '0.8.1.dev1'
+__ver__ = '0.8.1'
 
 log = logging.getLogger(__name__)
 
diff --git a/setup.py b/setup.py
index 4d271e2..979c42d 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.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=[
-- 
GitLab