======
* Handler functions no longer solicit positional arguments
but instead should solicit whatever parameters they
require. Functions using the following names will
continue to work as before::
def handler(client, event, channel, nick, rest)
But handlers not needing all of those parameters should
remove the unused names, e.g.::
pmxbot.command
def handler(nick):
return "Hello, " + nick
* RSS support has been moved to the
`pmxbot.rss <https://pypi.org/project/pmxbot.rss>`_
plugin.