[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[minion-cvs] Update maint version to 0.0.6.2
Update of /home/minion/cvsroot/src/minion
In directory moria.mit.edu:/tmp/cvs-serv15760
Modified Files:
Tag: mixminion-v0-0-6-patches
HISTORY README setup.py
Log Message:
Update maint version to 0.0.6.2
Index: HISTORY
===================================================================
RCS file: /home/minion/cvsroot/src/minion/HISTORY,v
retrieving revision 1.7.2.1
retrieving revision 1.7.2.2
diff -u -d -r1.7.2.1 -r1.7.2.2
--- HISTORY 19 Dec 2003 05:52:51 -0000 1.7.2.1
+++ HISTORY 23 Dec 2003 23:08:14 -0000 1.7.2.2
@@ -3,6 +3,13 @@
This file lists changes for earlier versions of Mixminion. For changes
in the latest version, see the README file.
----------------------------------------------------------------------
+NEW IN VERSION 0.0.6.2:
+ - Fixed a bug that prevented the client from ever deleting messages
+ from its queue.
+
+ - Have clients handle dropped connections to servers correctly, by
+ retrying only the packets that were not delivered.
+
NEW IN VERSION 0.0.6.1:
- Several documentation fixes.
Index: README
===================================================================
RCS file: /home/minion/cvsroot/src/minion/README,v
retrieving revision 1.70.2.2
retrieving revision 1.70.2.3
diff -u -d -r1.70.2.2 -r1.70.2.3
--- README 19 Dec 2003 05:52:51 -0000 1.70.2.2
+++ README 23 Dec 2003 23:08:14 -0000 1.70.2.3
@@ -1,6 +1,6 @@
$Id$
======================================================================
-This is Mixminion version 0.0.6.1.
+This is Mixminion version 0.0.6.2.
CONTENTS:
I. Overview
@@ -38,6 +38,13 @@
II. WHAT'S NEW IN THIS VERSION?
===============================
+NEW IN VERSION 0.0.6.2:
+ - Fixed a bug that prevented the client from ever deleting messages
+ from its queue.
+
+ - Have clients handle dropped connections to servers correctly, by
+ retrying only the packets that were not delivered.
+
NEW IN VERSION 0.0.6.1:
- Several documentation fixes.
@@ -194,9 +201,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.6.1.tar.gz>
+ <download and unpack http://www.mixminion.net/dist/Mixminion-0.0.6.2.tar.gz>
- % cd Mixminion-0.0.6.1
+ % cd Mixminion-0.0.6.2
% make download-openssl
% make build-openssl
% make
@@ -263,7 +270,7 @@
First, make sure that you're running Win98 or later.
- Download 'Mixminion-0.0.6.1.win32.zip", and unpack it anywhere you like.
+ Download 'Mixminion-0.0.6.2.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.
@@ -280,7 +287,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.6.1.win32-py2.3.exe". It will unpack
+ Download and run "Mixminion-0.0.6.2.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.87.2.1
retrieving revision 1.87.2.2
diff -u -d -r1.87.2.1 -r1.87.2.2
--- setup.py 19 Dec 2003 05:52:51 -0000 1.87.2.1
+++ setup.py 23 Dec 2003 23:08:14 -0000 1.87.2.2
@@ -6,9 +6,9 @@
#
# Current Mixminion version
#
-VERSION = '0.0.6.1'
+VERSION = '0.0.6.2'
# System: 0==alpha, 50==beta, 98=pre, 99==release candidate, 100==release
-VERSION_INFO = (0,0,6,100,1)
+VERSION_INFO = (0,0,6,100,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.