[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[minion-cvs] Bump version to 0.0.5rc2; the bug in PacketHandler may ...
Update of /home/minion/cvsroot/src/minion
In directory moria.mit.edu:/tmp/cvs-serv19125
Modified Files:
README setup.py
Log Message:
Bump version to 0.0.5rc2; the bug in PacketHandler may affect people.
Index: README
===================================================================
RCS file: /home/minion/cvsroot/src/minion/README,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -d -r1.57 -r1.58
--- README 2 Sep 2003 20:05:48 -0000 1.57
+++ README 3 Sep 2003 16:43:09 -0000 1.58
@@ -1,6 +1,6 @@
$Id$
======================================================================
-This is Mixminion version 0.0.5, release candidate 1.
+This is Mixminion version 0.0.5, release candidate 2.
CONTENTS:
I. Overview
@@ -38,7 +38,15 @@
II. WHAT'S NEW IN THIS VERSION?
===============================
-NEW IN VERSION 0.0.5rc1: <INCOMPLETE>
+NEW IN VERSION 0.0.5rc2:
+ - Fix for a bug that would crash exit servers trying to upgrade from
+ certain older versions.
+
+ - Improved error messages for several cases.
+
+ - Add a draft man page (credit goes to George Danezis).
+
+NEW IN VERSION 0.0.5rc1:
- Support for email headers. 'Subject', 'In-Reply-To', and 'References'
are fully supported. 'From' support is limited, as documented in
'E2E-spec.txt'.
@@ -113,9 +121,9 @@
The quick version.
------------------
- <download and unpack http://www.mixminion.net/dist/Mixminion-0.0.5rc1.tar.gz>
+ <download and unpack http://www.mixminion.net/dist/Mixminion-0.0.5rc2.tar.gz>
- % cd Mixminion-0.0.5rc1
+ % cd Mixminion-0.0.5rc2
% make download-openssl
% make build-openssl
% make
Index: setup.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/setup.py,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -d -r1.75 -r1.76
--- setup.py 2 Sep 2003 20:05:28 -0000 1.75
+++ setup.py 3 Sep 2003 16:43:09 -0000 1.76
@@ -6,9 +6,9 @@
#
# Current Mixminion version
#
-VERSION = '0.0.5rc1'
+VERSION = '0.0.5rc2'
# System: 0==alpha, 50==beta, 98=pre, 99==release candidate, 100==release
-VERSION_INFO = (0,0,5,99,1)
+VERSION_INFO = (0,0,5,99,2)
# Check the version. We need to make sure version_info exists before we
# compare to it: it was only added as of Python version 1.6.