Initial changelog and version changes for 0.83.0rc3.

This commit is contained in:
James Vega 2005-05-30 04:28:24 +00:00
parent 7549a9fe7c
commit 14752347e2
5 changed files with 54 additions and 3 deletions

View File

@ -1,3 +1,46 @@
2005-05-30 James Vega <jamessan@supybot.com>
* Version 0.83.0rc3!
* Updated Topic such that it can undo the first topic change performed
in a channel.
* Removed -O and -OO options for scripts/supybot.
* Removed password hashing options for scripts/supybot-adduser.
* Fixed a bug where RSS.remove wasn't removing the feed from
conf.supybot.plugins.RSS.feeds.
* Fixed a bug in Topic.set where setting the first topic would change
the entire topic.
* Fixed an AttributeError in the Ctcp plugin.
* Fixed a problem where Supybot would attempt to connect to a network
it was already connected to.
* Fixed a problem where a command with the same name as its plugin had
to be invoked as "plugin command".
* Fixed an exception when irc.reply was called with a non-string
argument.
* Fixed an ImportError in Twisted driver when OpenSSL wasn't
available.
* Updated Socket driver to fix some longstanding issues.
* Added supybot.drivers.maxReconnectWait, which determines the maximum
amount of time the bot will wait before attempting to reconnect to an
IRC server.
* Added utils.python.Synchronized metaclass to ensure synchronized
access to class methods.
* Moved utils.changeFunctionName to utils.python.changeFunctionName.
2005-05-12 James Vega <jamessan@supybot.com>
* Version 0.83.0rc2!

View File

@ -1,3 +1,11 @@
Version 0.83.0rc3
This release candidate contains mostly bug-fixes.
Incompatibilities:
utils.changeFunctionName was moved to utils.python.changeFunctionName
Version 0.83.0rc2
This release candidate contains a few bug-fixes and some plugins we

View File

@ -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.0rc2'
version = '0.83.0rc3'
if __name__ == '__main__':
###
# Options:

View File

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

View File

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