Updated for the new release.

This commit is contained in:
Jeremy Fincher 2004-08-30 07:08:26 +00:00
parent 61e09d453a
commit 1f6c3c72cf
5 changed files with 54 additions and 7 deletions

View File

@ -1,11 +1,44 @@
2004-08-30 Jeremy Fincher <jemfinch@supybot.org>
* 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 <jemfinch@supybot.org>

View File

@ -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

View File

@ -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',

View File

@ -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',

View File

@ -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