[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[minion-cvs] Bump maintenance version to 0.0.6.1
Update of /home/minion/cvsroot/src/minion
In directory moria.mit.edu:/tmp/cvs-serv1282
Modified Files:
Tag: mixminion-v0-0-6-patches
HISTORY README setup.py
Log Message:
Bump maintenance version to 0.0.6.1
Index: HISTORY
===================================================================
RCS file: /home/minion/cvsroot/src/minion/HISTORY,v
retrieving revision 1.7
retrieving revision 1.7.2.1
diff -u -d -r1.7 -r1.7.2.1
--- HISTORY 15 Dec 2003 04:47:22 -0000 1.7
+++ HISTORY 19 Dec 2003 05:52:51 -0000 1.7.2.1
@@ -3,6 +3,21 @@
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.1:
+ - Several documentation fixes.
+
+ - Make the -H option work again when -P is not provided, and give a
+ useful error when it is.
+
+ - Make 'list-server -R' work properly.
+
+ - Fix a bug that made it impossible to send replies messages with text
+ from the command line.
+
+ - Never try to clean client queues without holding the proper lock.
+
+ - Prevent the server from crashing on an unresolvable hostname.
+
NEW IN VERSION 0.0.6:
- Several documentation fixes.
Index: README
===================================================================
RCS file: /home/minion/cvsroot/src/minion/README,v
retrieving revision 1.70.2.1
retrieving revision 1.70.2.2
diff -u -d -r1.70.2.1 -r1.70.2.2
--- README 18 Dec 2003 23:13:55 -0000 1.70.2.1
+++ README 19 Dec 2003 05:52:51 -0000 1.70.2.2
@@ -1,6 +1,6 @@
$Id$
======================================================================
-This is Mixminion version 0.0.6, from the Mixminion CVS repository.
+This is Mixminion version 0.0.6.1.
CONTENTS:
I. Overview
@@ -38,6 +38,21 @@
II. WHAT'S NEW IN THIS VERSION?
===============================
+NEW IN VERSION 0.0.6.1:
+ - Several documentation fixes.
+
+ - Make the -H option work again when -P is not provided, and give a
+ useful error when it is.
+
+ - Make 'list-server -R' work properly.
+
+ - Fix a bug that made it impossible to send replies messages with text
+ from the command line.
+
+ - Never try to clean client queues without holding the proper lock.
+
+ - Prevent the server from crashing on an unresolvable hostname.
+
NEW IN VERSION 0.0.6:
- Several documentation fixes.
@@ -153,7 +168,7 @@
If you aren't running a server, you are done. (Compatibility note: SURB
keyrings used by version 0.0.5 are _not_ compatible with keyrings used by
-0.0.6!)
+0.0.6.X!)
If you're running a server, you may need to upgrade your configuration file.
Follow these steps:
@@ -179,9 +194,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.tar.gz>
+ <download and unpack http://www.mixminion.net/dist/Mixminion-0.0.6.1.tar.gz>
- % cd Mixminion-0.0.6
+ % cd Mixminion-0.0.6.1
% make download-openssl
% make build-openssl
% make
@@ -248,7 +263,7 @@
First, make sure that you're running Win98 or later.
- Download 'Mixminion-0.0.6.win32.zip", and unpack it anywhere you like.
+ Download 'Mixminion-0.0.6.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.
@@ -265,7 +280,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.win32-py2.3.exe". It will unpack
+ Download and run "Mixminion-0.0.6.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.87
retrieving revision 1.87.2.1
diff -u -d -r1.87 -r1.87.2.1
--- setup.py 15 Dec 2003 04:41:53 -0000 1.87
+++ setup.py 19 Dec 2003 05:52:51 -0000 1.87.2.1
@@ -6,9 +6,9 @@
#
# Current Mixminion version
#
-VERSION = '0.0.6'
+VERSION = '0.0.6.1'
# 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,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.