From 1f6c3c72cfb841cfcd966beb5c8cfc8e90fc068e Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 30 Aug 2004 07:08:26 +0000 Subject: [PATCH] Updated for the new release. --- ChangeLog | 41 +++++++++++++++++++++++++++++++++++++---- RELNOTES | 14 ++++++++++++++ scripts/supybot | 2 +- setup.py | 2 +- src/conf.py | 2 +- 5 files changed, 54 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index df2132fd4..30f3bc128 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,11 +1,44 @@ +2004-08-30 Jeremy Fincher + + * Version 0.79.99! We're getting asymptotically closer to + 0.80.0! + * Added Anonymous.action, to anonymously perform actions in a specified channel. - * Added a clear command to the Karma plugin, so channel ops can - clear the karma for a given name. + * Added a Karma.clear, so channel ops can clear the karma for a + given name. - * Added a redo command to the Topic plugin, to redo the last - undo. + * Added a Topic.redo, to redo the last undo. + + * Added supybot.protocols.irc.umodes, to allow the bot to set + user modes upon connecting to a network. + + * Fixed numerous bugs involved with disconnecting, reconnecting, + and using multiple networks. + + * Fixed a bug that would prevent the bot from quitting except via + multiple Ctrl-Cs. + + * Fixed RSS's announcements. + + * Fixed bug in Later whereby no more than one message could be + queued for a nick. + + * Fixed Services.configure, as well as several bugs in Services + which sometimes prevented the bot from identifying. + + * Fixed bugs in the Poll module that caused the list and poll + commands not to work. + + * Fixed the ebay snarfer. + + * Fixed exception raised by some CTCP messages when the URL + plugin was loaded. + + * Fixed Debian.version. + + * Fixed Amazon's use of unicode. 2004-08-27 Jeremy Fincher diff --git a/RELNOTES b/RELNOTES index 4e641cbe6..5a34670b3 100644 --- a/RELNOTES +++ b/RELNOTES @@ -1,3 +1,12 @@ +Version 0.79.99 + +Many bugs fixed, thanks to the users who reported them. We're +getting asymptotically closer to 0.80.0 -- maybe this'll be the last +one, maybe we'll have to release an 0.79.999 -- either way, we're +getting close :) Check out the ChangeLog for the fixes and a few new +features. + + Version 0.79.9 We've changed so much stuff in this release that we've given up on @@ -11,6 +20,7 @@ and running supybot with that new configuration file. This, of course, comes with no warranty or guarantee of utility -- try it if you want, but backup your original configuration file!) + Version 0.77.2 This is a drop-in replacement for 0.77.1, with two exceptions. The @@ -32,12 +42,14 @@ release tarballs. If you're a developer and you want these, you should either check out CVS or download one of our weekly CVS snapshots, available at http://supybot.sourceforge.net/snapshots/ . + Version 0.77.1 This is a drop-in replacement for 0.77.0 -- no incompatibilities, to out knowledge. Simply install over your old installation and restart your bot :) + Version 0.77.0 Setup.py will automatically remove your old installations for you, no @@ -68,12 +80,14 @@ Uh, we were just kidding about the upgrade script in 0.76.0 :) It'll be a little while longer. We do have several little upgrade scripts, though. + Version 0.76.1 Almost entirely bugfixes, just some minor (and some less minor) bugs that need to get in before we really start hacking on the next version. Should be *entirely* compatible with 0.76.0. + Version 0.76.0 Major bugfix release. A great number of bugs fixed. This is the last diff --git a/scripts/supybot b/scripts/supybot index 2f22d0b8f..c6781c931 100755 --- a/scripts/supybot +++ b/scripts/supybot @@ -130,7 +130,7 @@ if __name__ == '__main__': # --connect (commands to run afterConnect) # --config (configuration values) parser = optparse.OptionParser(usage='Usage: %prog [options] configFile', - version='supybot 0.79.9+cvs') + version='supybot 0.79.99') parser.add_option('-P', '--profile', action='store_true', dest='profile', help='enables profiling') parser.add_option('-O', action='count', dest='optimize', diff --git a/setup.py b/setup.py index c94d9931f..6baddc61b 100644 --- a/setup.py +++ b/setup.py @@ -82,7 +82,7 @@ if clean: setup( # Metadata name='supybot', - version='0.79.9+cvs', + version='0.79.99', author='Jeremy Fincher', url='http://supybot.sf.net/', author_email='jemfinch@users.sf.net', diff --git a/src/conf.py b/src/conf.py index 09d89fd0d..711f8b2ac 100644 --- a/src/conf.py +++ b/src/conf.py @@ -50,7 +50,7 @@ _pluginsDir = os.path.join(installDir, 'plugins') ### # version: This should be pretty obvious. ### -version ='0.79.9+cvs' +version ='0.79.99' ### # *** The following variables are affected by command-line options. They are