diff --git a/CHANGES.rst b/CHANGES.rst index ef1464c21..46c9b4a3c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,39 @@ Release history =============== +Version 2.1.0 (2014-07-24) +-------------------------- + +New features: + +- Various changes to the test backend: + + - `setUp `_ + method of `FullStackTest` now takes an `extra_plugin_dir` argument, deprecating the + `extra_test_file` argument. + - `popMessage` and `pushMessage` are now more pythonically called `pop_message` and + `push_message`, though the old names continue to work. + - New `testbot `_ fixture + to write tests using `pytest `_. + +- Better display of active plugins in debug info (#262). +- Allow optional username for IRC backend (#256). +- *Raw* option for the webhook API. +- `Regex-based `_ bot commands. +- Pretty-printed output of the !config command. + +Bugs fixed: + +- Fix make_ssl_certificate on Python 2. +- Newer version of Rocket, fixing an issue with releasing ports on OSX (#268). +- Only run 3to2 during actual install steps (#232). +- Ignore messages from self (#247). +- Import `irc.connection` within try/except block (#245). +- Better message recipient setting in XMPP MUC responses. +- Only configure XMPP MUC when having owner affiliation. +- Use SleekXMPP plugin `xep_0004` instead of deprecated `old_0004` (#236). + + Version 2.0.0 (2014-01-05) -------------------------- diff --git a/errbot/version.py b/errbot/version.py index fd47c63bf..e7b4a585c 100644 --- a/errbot/version.py +++ b/errbot/version.py @@ -1,3 +1,3 @@ # just the current version of err # it is used for deployment on pypi AND for version checking at plugin load time -VERSION = '2.0.0' +VERSION = '2.1.0' diff --git a/setup.py b/setup.py index 884715053..3eb9b880f 100755 --- a/setup.py +++ b/setup.py @@ -122,7 +122,7 @@ def read(fname): long_description=''.join([read('README.rst'), '\n\n', changes]), license="GPL", keywords="xmpp jabber chatbot bot plugin", - url="http://gbin.github.com/err/", + url="http://errbot.net/", classifiers=[ "Development Status :: 5 - Production/Stable", "Topic :: Communications :: Chat",