Version 0.83.1

This commit is contained in:
James Vega 2005-09-02 02:13:51 +00:00
parent f926f1d5c2
commit 0974d70ca4
5 changed files with 16 additions and 4 deletions

View File

@ -1,4 +1,11 @@
2005-08-30 James Vega <jamessan@supybot.com> 2005-09-01 James Vega <jamessan@supybot.com>
* 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 <jamessan@supybot.com>
* Version 0.83.0! * Version 0.83.0!

View File

@ -1,3 +1,8 @@
Version 0.83.1
No incompatibilities, just fixing an important bug with plugin loading.
Version 0.83.0 Version 0.83.0
This far overdue release contains mostly bug-fixes. This far overdue release contains mostly bug-fixes.

View File

@ -123,7 +123,7 @@ def main():
log.info('Total CPU time taken: %s seconds.', user+system) log.info('Total CPU time taken: %s seconds.', user+system)
log.info('No more Irc objects, exiting.') log.info('No more Irc objects, exiting.')
version = '0.83.0+darcs' version = '0.83.1'
if __name__ == '__main__': if __name__ == '__main__':
### ###
# Options: # Options:

View File

@ -154,7 +154,7 @@ package_dir = {'supybot': 'src',
for plugin in plugins: for plugin in plugins:
package_dir['supybot.plugins.' + plugin] = 'plugins/' + plugin package_dir['supybot.plugins.' + plugin] = 'plugins/' + plugin
version = '0.83.0+darcs' version = '0.83.1'
setup( setup(
# Metadata # Metadata
name='supybot', name='supybot',

View File

@ -43,7 +43,7 @@ _pluginsDir = os.path.join(installDir, 'plugins')
### ###
# version: This should be pretty obvious. # 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 # *** The following variables are affected by command-line options. They are