mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-26 12:49:24 +01:00
Version 0.83.1
This commit is contained in:
parent
f926f1d5c2
commit
0974d70ca4
@ -1,3 +1,10 @@
|
||||
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!
|
||||
|
5
RELNOTES
5
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.
|
||||
|
@ -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:
|
||||
|
2
setup.py
2
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',
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user