From c55ddc665ef35928e23aaa3483b898a9286e4097 Mon Sep 17 00:00:00 2001 From: dgw Date: Sat, 9 Mar 2019 03:29:18 -0600 Subject: [PATCH] Release 6.6.4 --- NEWS | 22 ++++++++++++++++++++++ sopel/__init__.py | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 4f39bb6cca..cd3c31efd7 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,28 @@ This file is used to auto-generate the "Changelog" section of Sopel's website. When adding new entries, follow the style guide in NEWS.spec.md to avoid causing problems with the site build. +Changes between 6.6.3 and 6.6.4 +=============================== + +Module changes +-------------- + +* Replaced `help` pastebin with `clbin.com` + * `ptpb.pw` shut down due to abuse — see [ptpb/pb#246]( + https://github.com/ptpb/pb/issues/246) for more + * More news on this front (reducing Sopel's dependence on specific pastebins) + in a future release. Several ideas are under consideration. +* Cleaned up code in `instagram` and `unicode` modules +* Core modules now use `bot.channels` instead of deprecated `bot.privileges` + +Core changes +------------ + +* Privilege tracking now always updates both `bot.channels` & `bot.privileges`, + where before some handlers only updated one or the other + * This *should* have zero effect on behavior, but do report any observed. + + Changes between 6.6.2 and 6.6.3 =============================== diff --git a/sopel/__init__.py b/sopel/__init__.py index 6ca157855e..6ebcf3d217 100644 --- a/sopel/__init__.py +++ b/sopel/__init__.py @@ -30,7 +30,7 @@ import traceback import signal -__version__ = '6.6.3' +__version__ = '6.6.4' def _version_info(version=__version__):