[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[minion-cvs] oops -- commit 0.0.5 changes to CVS.



Update of /home/minion/cvsroot/src/minion
In directory moria.mit.edu:/tmp/cvs-serv29041

Modified Files:
	README TODO setup.py 
Log Message:
oops -- commit 0.0.5 changes to CVS.

Index: README
===================================================================
RCS file: /home/minion/cvsroot/src/minion/README,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -d -r1.58 -r1.59
--- README	3 Sep 2003 16:43:09 -0000	1.58
+++ README	5 Sep 2003 21:45:19 -0000	1.59
@@ -1,6 +1,6 @@
 $Id$
 ======================================================================
-This is Mixminion version 0.0.5, release candidate 2.
+This is Mixminion version 0.0.5.
 
 CONTENTS:
         I.    Overview
@@ -38,6 +38,10 @@
 II. WHAT'S NEW IN THIS VERSION?
 ===============================
 
+NEW IN VERSION 0.0.5:
+   - Fix a harmless but hard-to-detect bug that showed up when running
+     unittests on certain platforms.
+
 NEW IN VERSION 0.0.5rc2:
    - Fix for a bug that would crash exit servers trying to upgrade from
      certain older versions.
@@ -121,9 +125,9 @@
 
 The quick version.
 ------------------
-  <download and unpack http://www.mixminion.net/dist/Mixminion-0.0.5rc2.tar.gz>
+  <download and unpack http://www.mixminion.net/dist/Mixminion-0.0.5.tar.gz>
 
-  % cd Mixminion-0.0.5rc2
+  % cd Mixminion-0.0.5
   % make download-openssl
   % make build-openssl
   % make

Index: TODO
===================================================================
RCS file: /home/minion/cvsroot/src/minion/TODO,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -d -r1.148 -r1.149
--- TODO	5 Sep 2003 20:02:27 -0000	1.148
+++ TODO	5 Sep 2003 21:45:19 -0000	1.149
@@ -96,14 +96,14 @@
                 o Notice [...]s in test encoded messages
                 o Handle corrupt pickled data
                 D Handle server time moving backward
-        . Release
+        o Release
                 o Fix all XXXX005 and DOCDOC comments
                 o Update README
-                . Manually test all new functionality
-                . Manually test all old functionality
-                . Test old servers with new client code
-                . Test old clients with new servers
-                - Update manual page
+                o Manually test all new functionality
+                o Manually test all old functionality
+                o Test old servers with new client code
+                o Test old clients with new servers
+                D Update manual page
 
 For 0.0.6:  (The release for integrators, Windows users, senders of
 large replies, people with dynamically assigned IPs, people with high

Index: setup.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/setup.py,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -d -r1.76 -r1.77
--- setup.py	3 Sep 2003 16:43:09 -0000	1.76
+++ setup.py	5 Sep 2003 21:45:19 -0000	1.77
@@ -6,9 +6,9 @@
 #
 #   Current Mixminion version
 #
-VERSION = '0.0.5rc2'
+VERSION = '0.0.5'
 # System: 0==alpha, 50==beta, 98=pre, 99==release candidate, 100==release
-VERSION_INFO = (0,0,5,99,2)
+VERSION_INFO = (0,0,5,100,-1)
 
 # 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.