From 509c3bd3e05f2450de954b2d648a649e514372af Mon Sep 17 00:00:00 2001 From: Edward Powell Date: Sat, 21 Feb 2015 12:48:23 -0500 Subject: [PATCH] Release 5.1.0 --- NEWS | 18 ++++++++++++++++++ willie/__init__.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index c7ec16c8e7..a55e45efcc 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,21 @@ +Changes between 5.0.0 and 5.1.0 +=============================== +Module changes (for users): +* Fixed a regression that caused getting weather for a nick to fail +* Bugs related to channel log filenames are fixed +* Channel logs can now use the bot's preferred time zone +* Getter and setter methods for timezone and format are more consistently named +* .seen persists across bot restarts +* .seen no longer shows message or channel unless used within the same channel +* Special characters in Wikipedia URLs are handled correctly + +Core changes (for users): +* help_prefix can now be given in [core] to change the command prefix used in help + +API changes (for developers): +* The Trigger object is now immutable, as expected +* New decorators for checking privileges on callables are added + Changes between 4.6.2 and 5.0.0 =============================== This release contains backwards-incompatible changes. See diff --git a/willie/__init__.py b/willie/__init__.py index e238c5dac2..e3f2dc3845 100644 --- a/willie/__init__.py +++ b/willie/__init__.py @@ -19,7 +19,7 @@ import traceback import signal -__version__ = '5.0.0-git' +__version__ = '5.1.0' def run(config):