From 14752347e27212015d07b855263dee014b2a247e Mon Sep 17 00:00:00 2001 From: James Vega Date: Mon, 30 May 2005 04:28:24 +0000 Subject: [PATCH] Initial changelog and version changes for 0.83.0rc3. --- ChangeLog | 43 +++++++++++++++++++++++++++++++++++++++++++ RELNOTES | 8 ++++++++ scripts/supybot | 2 +- setup.py | 2 +- src/conf.py | 2 +- 5 files changed, 54 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 98c25e3ad..d1549c0e7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,46 @@ +2005-05-30 James Vega + + * 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 * Version 0.83.0rc2! diff --git a/RELNOTES b/RELNOTES index 03da07e2e..edb0479a2 100644 --- a/RELNOTES +++ b/RELNOTES @@ -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 diff --git a/scripts/supybot b/scripts/supybot index 2a0faca1c..280424b8f 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.0rc2' +version = '0.83.0rc3' if __name__ == '__main__': ### # Options: diff --git a/setup.py b/setup.py index 857bccc0c..1e9bc2adc 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.0rc2' +version = '0.83.0rc3' setup( # Metadata name='supybot', diff --git a/src/conf.py b/src/conf.py index 58e8aad99..be8c7d9ec 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.0rc2' +version = '0.83.0rc3' ### # *** The following variables are affected by command-line options. They are