[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[minion-cvs] Bump version string to 0.0.7.1
Update of /home/minion/cvsroot/src/minion
In directory moria.mit.edu:/tmp/cvs-serv9685
Modified Files:
Tag: mixminion-v0-0-7-patches
HISTORY README setup.py
Log Message:
Bump version string to 0.0.7.1
Index: HISTORY
===================================================================
RCS file: /home/minion/cvsroot/src/minion/HISTORY,v
retrieving revision 1.13
retrieving revision 1.13.2.1
diff -u -d -r1.13 -r1.13.2.1
--- HISTORY 4 Apr 2004 17:58:28 -0000 1.13
+++ HISTORY 10 May 2004 17:36:22 -0000 1.13.2.1
@@ -1,4 +1,12 @@
$Id$
+NEW IN VERSION 0.0.7.1:
+ - Install man pages in PREFIX/share/man, not PREFIX/man.
+ - If the server crashed while changing a packet's metadata, it would often
+ crash upon restart. Now it doesn't.
+ - Don't crash when trying to route from a pre-0.0.6 server to a server
+ with no IP.
+ - Don't crash when we fail to download a directory.
+
NEW IN VERSION 0.0.7:
- New version number; nothing else has changed since 0.0.7rc2.
Index: README
===================================================================
RCS file: /home/minion/cvsroot/src/minion/README,v
retrieving revision 1.78
retrieving revision 1.78.2.1
diff -u -d -r1.78 -r1.78.2.1
--- README 4 Apr 2004 17:58:28 -0000 1.78
+++ README 10 May 2004 17:36:22 -0000 1.78.2.1
@@ -1,6 +1,6 @@
$Id$
======================================================================
-This is Mixminion version 0.0.7, from the Mixminion CVS repository.
+This is Mixminion version 0.0.7.1.
CONTENTS:
I. Overview
@@ -37,6 +37,13 @@
II. WHAT'S NEW IN THIS VERSION?
===============================
+NEW IN VERSION 0.0.7.1:
+ - Install man pages in PREFIX/share/man, not PREFIX/man.
+ - If the server crashed while changing a packet's metadata, it would often
+ crash upon restart. Now it doesn't.
+ - Don't crash when trying to route from a pre-0.0.6 server to a server
+ with no IP.
+ - Don't crash when we fail to download a directory.
NEW IN VERSION 0.0.7:
- New version number; nothing else has changed since 0.0.7rc2.
@@ -134,9 +141,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.7.tar.gz>
+ <download and unpack http://www.mixminion.net/dist/Mixminion-0.0.7.1.tar.gz>
- % cd Mixminion-0.0.7
+ % cd Mixminion-0.0.7.1
% make download-openssl
% make build-openssl
% make
@@ -203,7 +210,7 @@
First, make sure that you're running Win98 or later.
- Download 'Mixminion-0.0.7.win32.zip", and unpack it anywhere you like.
+ Download 'Mixminion-0.0.7.1.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.
@@ -214,7 +221,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.7.win32-py2.3.exe". It will unpack
+ Download and run "Mixminion-0.0.7.1.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.98.2.1
retrieving revision 1.98.2.2
diff -u -d -r1.98.2.1 -r1.98.2.2
--- setup.py 4 Apr 2004 18:45:20 -0000 1.98.2.1
+++ setup.py 10 May 2004 17:36:22 -0000 1.98.2.2
@@ -6,9 +6,9 @@
#
# Current Mixminion version
#
-VERSION = '0.0.7'
+VERSION = '0.0.7.1'
# System: 0==alpha, 50==beta, 98=pre, 99==release candidate, 100==release
-VERSION_INFO = (0,0,7,100,-1)
+VERSION_INFO = (0,0,7,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.