diff --git a/NEWS b/NEWS index 2d117a5895..ef8518c3a4 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,16 @@ +Changes between 4.2.0 and 4.3.0 +=============================== +Module Changes (for users): +* A new channel logging module is added +* Misc bugfixes, especially when running with Python 3 + +Core changes (for users): +* Fixed a regression that caused numerous errors in willie.web +* Misc bugfixes + +API Changes (for developers): +* Nick instances now have an `is_nick` attribute, which is True when the value is a valid nickname (as opposed to a channel) + Changes between 4.1.0 and 4.2.0 =============================== Module Changes (for users): diff --git a/willie/__init__.py b/willie/__init__.py index 52189964d5..1c79e8583b 100644 --- a/willie/__init__.py +++ b/willie/__init__.py @@ -22,7 +22,7 @@ import willie.web as web from willie.tools import stderr -__version__ = '4.2.1-git' +__version__ = '4.3.0' def run(config):