diff --git a/NEWS b/NEWS index a55e45efcc..6f2cf04db9 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -Changes between 5.0.0 and 5.1.0 +Changes between 5.0.0 and 5.1.1 =============================== Module changes (for users): * Fixed a regression that caused getting weather for a nick to fail diff --git a/setup.py b/setup.py index 4382e647c2..a0dd353aa1 100755 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ def do_setup(): long_description="""Willie is a simple, lightweight, open source, easy-to-use IRC Utility bot, written in Python. It's designed to be easy to use, easy to run, and easy to make new features for. """, # Distutils is shit, and doesn't check if it's a list of basestring # but instead requires str. - packages=[str('willie'), str('willie.modules')], + packages=[str('willie'), str('willie.modules'), str('willie.config')], scripts=[tmp_main_script], license='Eiffel Forum License, version 2', platforms='Linux x86, x86-64', diff --git a/willie/__init__.py b/willie/__init__.py index 75cf619bba..fa083829de 100644 --- a/willie/__init__.py +++ b/willie/__init__.py @@ -19,7 +19,7 @@ import traceback import signal -__version__ = '5.1.0-git' +__version__ = '5.1.1' def run(config):