From a690057173d78dafb7ab429780e2febbc286fcbb Mon Sep 17 00:00:00 2001 From: Elad Alfassa Date: Wed, 9 Mar 2016 18:32:07 +0200 Subject: [PATCH] Release 6.3.1 --- NEWS | 11 +++++++++++ sopel/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 3d556a17f7..11332cbde8 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,14 @@ +Changes between 6.3.0 and 6.3.1 +=============================== +Module changes: +* The xkcd module is working again +* Fix an issue causing unicode errors to show for some URLs when using Python 2 (but you should really switch to 3!) + +Core Changes: +* Fix a bug in QUIT message parsing which caused certain users to be flooded with PMs if their nick matched the first word of a user's QUIT message (such as "disconnected" or "ping") +* Fix a rare python 3 incompatibility bug when quitting due to too many core errors. +* We no longer show a warning when detecting a non-unicode system locale if you're still using Python 2 + Changes between 6.2.0 and 6.3.0 =============================== Module changes: diff --git a/sopel/__init__.py b/sopel/__init__.py index c594917232..ff55237adf 100644 --- a/sopel/__init__.py +++ b/sopel/__init__.py @@ -29,7 +29,7 @@ import traceback import signal -__version__ = '6.3.0' +__version__ = '6.3.1' def _version_info(version=__version__):