From 0974d70ca4d0ce841ad5174bb8ed100c60c79993 Mon Sep 17 00:00:00 2001 From: James Vega Date: Fri, 2 Sep 2005 02:13:51 +0000 Subject: [PATCH] Version 0.83.1 --- ChangeLog | 9 ++++++++- RELNOTES | 5 +++++ scripts/supybot | 2 +- setup.py | 2 +- src/conf.py | 2 +- 5 files changed, 16 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3e2421654..88e786586 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,11 @@ -2005-08-30 James Vega +2005-09-01 James Vega + + * Version 0.83.1! + + * Fixed a bug in Owner where plugins would not be automatically loaded + unless the bot was connected to more than one network. + +2005-08-30 James Vega * Version 0.83.0! diff --git a/RELNOTES b/RELNOTES index 34b9abecb..001ca484e 100644 --- a/RELNOTES +++ b/RELNOTES @@ -1,3 +1,8 @@ +Version 0.83.1 + +No incompatibilities, just fixing an important bug with plugin loading. + + Version 0.83.0 This far overdue release contains mostly bug-fixes. diff --git a/scripts/supybot b/scripts/supybot index f8eb4a329..beb5b1fb8 100644 --- a/scripts/supybot +++ b/scripts/supybot @@ -123,7 +123,7 @@ def main(): log.info('Total CPU time taken: %s seconds.', user+system) log.info('No more Irc objects, exiting.') -version = '0.83.0+darcs' +version = '0.83.1' if __name__ == '__main__': ### # Options: diff --git a/setup.py b/setup.py index f0bc9f59f..9af61bddd 100644 --- a/setup.py +++ b/setup.py @@ -154,7 +154,7 @@ package_dir = {'supybot': 'src', for plugin in plugins: package_dir['supybot.plugins.' + plugin] = 'plugins/' + plugin -version = '0.83.0+darcs' +version = '0.83.1' setup( # Metadata name='supybot', diff --git a/src/conf.py b/src/conf.py index 395ec0bc9..3b230d11d 100644 --- a/src/conf.py +++ b/src/conf.py @@ -43,7 +43,7 @@ _pluginsDir = os.path.join(installDir, 'plugins') ### # version: This should be pretty obvious. ### -version = '0.83.0+darcs' +version = '0.83.1' ### # *** The following variables are affected by command-line options. They are