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

[minion-cvs] Bump version to 0.0.6



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

Modified Files:
	README setup.py 
Log Message:
Bump version to 0.0.6

Index: README
===================================================================
RCS file: /home/minion/cvsroot/src/minion/README,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -d -r1.69 -r1.70
--- README	14 Dec 2003 01:43:38 -0000	1.69
+++ README	15 Dec 2003 04:41:53 -0000	1.70
@@ -1,6 +1,6 @@
 $Id$
 ======================================================================
-This is Mixminion version 0.0.6rc2, from the Mixminion CVS repository.
+This is Mixminion version 0.0.6, from the Mixminion CVS repository.
 
 CONTENTS:
         I.    Overview
@@ -38,7 +38,7 @@
 II. WHAT'S NEW IN THIS VERSION?
 ===============================
 
-NEW IN VERSION ????:
+NEW IN VERSION 0.0.6:
    - Several documentation fixes.
 
    - Starting a server for the first time will no longer give a spurious
@@ -48,6 +48,8 @@
 
    - 'mixminion server-start --quiet' is now even more quiet than before.
 
+   - Inital initial debian packaging files and targes (Peter Palfrader)
+
 NEW IN VERSION 0.0.6rc2:
    - Fixed a couple of bugs that would prevent Mixminion from running on
      Python 2.0 or Python 2.1.
@@ -177,9 +179,9 @@
 
 The quick version: For Unix-clones, Mac OS X, or Windows with Cygwin
 ---------------------------------------------------------------------
-  <download and unpack http://www.mixminion.net/dist/Mixminion-0.0.6rc2.tar.gz>
+  <download and unpack http://www.mixminion.net/dist/Mixminion-0.0.6.tar.gz>
 
-  % cd Mixminion-0.0.6rc2
+  % cd Mixminion-0.0.6
   % make download-openssl
   % make build-openssl
   % make
@@ -246,7 +248,7 @@
 
    First, make sure that you're running Win98 or later.
 
-   Download 'Mixminion-0.0.6rc2.win32.zip", and unpack it anywhere you like.
+   Download 'Mixminion-0.0.6.win32.zip", and unpack it anywhere you like.
    It will create a directory named 'mixminion'.
 
    Use mixminion.exe from that directory as your command-line client.
@@ -263,7 +265,7 @@
    First, make sure that you have the latest official release of Python 2.3
    installed.  As of 5 Dec 2003, this is 2.3.2.
 
-   Download and run "Mixminion-0.0.6rc2.win32-py2.3.exe".  It will unpack
+   Download and run "Mixminion-0.0.6.win32-py2.3.exe".  It will unpack
    its files into your Python directory.
 
    The script to invoke Mixminion will be stored in the 'Scripts'

Index: setup.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/setup.py,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -d -r1.86 -r1.87
--- setup.py	12 Dec 2003 22:37:12 -0000	1.86
+++ setup.py	15 Dec 2003 04:41:53 -0000	1.87
@@ -6,9 +6,9 @@
 #
 #   Current Mixminion version
 #
-VERSION = '0.0.6rc2'
+VERSION = '0.0.6'
 # System: 0==alpha, 50==beta, 98=pre, 99==release candidate, 100==release
-VERSION_INFO = (0,0,6,99,2)
+VERSION_INFO = (0,0,6,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.