Skip to content

Commit

Permalink
Version-bump to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zoni committed Jul 24, 2014
1 parent 4da63f1 commit 9ff202f
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 2 deletions.
33 changes: 33 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,39 @@
Release history
===============

Version 2.1.0 (2014-07-24)
--------------------------

New features:

- Various changes to the test backend:

- `setUp <http://errbot.net/errbot.backends.test/#errbot.backends.test.FullStackTest.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 <http://errbot.net/errbot.backends.test/#errbot.backends.test.testbot>`_ fixture
to write tests using `pytest <http://pytest.org/>`_.

- Better display of active plugins in debug info (#262).
- Allow optional username for IRC backend (#256).
- *Raw* option for the webhook API.
- `Regex-based <http://errbot.net/errbot.decorators/#errbot.decorators.re_botcmd>`_ 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)
--------------------------

Expand Down
2 changes: 1 addition & 1 deletion errbot/version.py
Original file line number Diff line number Diff line change
@@ -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'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 9ff202f

Please sign in to comment.