[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[minion-cvs] Bump version; change patchlevel appearance



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

Modified Files:
	setup.py README 
Log Message:
Bump version; change patchlevel appearance

Index: setup.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/setup.py,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -d -r1.49 -r1.50
--- setup.py	20 Feb 2003 01:55:13 -0000	1.49
+++ setup.py	20 Feb 2003 06:33:03 -0000	1.50
@@ -22,9 +22,9 @@
 
 os.umask(022)
 
-VERSION = '0.0.3rc2'
+VERSION = '0.0.3'
 # System: 0==alpha, 50==beta, 99==release candidate, 100==release
-VERSION_INFO = (0,0,3,99,2)
+VERSION_INFO = (0,0,3,100,-1)
 
 # Function to pull openssl version number out of an opensslv.h file.  This
 # isn't a real C preprocessor, but it seems to work well enough.
@@ -74,19 +74,18 @@
 I looked.  If you installed it somewhere unusual, try setting the
 variable OPENSSL_PREFIX as in:
 
-      make build OPENSSL_PREFIX=/opt/openssl-0.9.7
+      make OPENSSL_PREFIX=/opt/openssl-0.9.7
 
 If you have a nonstandard OpenSSL 0.9.7 installation, you may need to
 give compiler flags directly, as in:
 
-      make build \\
-           OPENSSL_CFLAGS='-I ~/openssl-include' \\
+      make OPENSSL_CFLAGS='-I ~/openssl-include' \\
            OPENSSL_LDFLAGS='-L ~/openssl-libs -lssl097 -lcrypto097'
 
 If your C compiler knows where to find OpenSSL 0.9.7, and I should
 just trust it, use the SKIP_OPENSSL_SEARCH option, as in:
 
-      make build SKIP_OPENSSL_SEARCH="y"
+      make SKIP_OPENSSL_SEARCH="y"
 
 Finally, if you don't have OpenSSL 0.9.7 and you don't want to install
 it, you can grab and build a local copy for Mixminion only by running:

Index: README
===================================================================
RCS file: /home/minion/cvsroot/src/minion/README,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- README	19 Feb 2003 03:41:22 -0000	1.34
+++ README	20 Feb 2003 06:33:03 -0000	1.35
@@ -1,12 +1,10 @@
 $Id$
 ======================================================================
-This is Mixminion version 0.0.3rc2.
+This is Mixminion version 0.0.3
 
  WARNING!  Mixminion 0.0.3 breaks backward compatibility with version 0.0.2.
  Versions older than 0.0.3 are no longer supported; you should upgrade now.
 
-XXXX Clarify only need to d/l openssl once.
-
 CONTENTS:
         I.    Overview
         II.   What's new in this version
@@ -43,6 +41,16 @@
 II. WHAT'S NEW IN THIS VERSION?
 ===============================
 
+NEW IN VERSION 0.0.3:
+   Better build support:
+      - Fail more gracefully with missing 'which'.
+      - Fail more gracefully with missing python-dev.
+      - Portability fixes for Python 2.0.
+   Client tweaks:
+      - Default connection timeout to 1 minute.
+      - Rename stop-server to server-stop.
+      - Rename reload-server to server-reload.
+
 NEW IN VERSION 0.0.3rc2:
    Numerous bugfixes, including:
       - More verbose client locking
@@ -59,7 +67,6 @@
       - mixminion stop-server and mixminion reload-server commands.
 
 NEW IN VERSION 0.0.3rc1:
-
    CLIENT:   
       - Single-use reply blocks (SURBs) are fully supported and available.
       - You can use client-side pooling: it holds messages until you're
@@ -155,9 +162,9 @@
 
 The quick version.
 ------------------
-  <download and unpack http://www.mixminion.net/dist/Mixminion-0.0.3rc1.tar.gz>
+  <download and unpack http://www.mixminion.net/dist/Mixminion-0.0.3.tar.gz>
 
-  % cd Mixminion-0.0.3rc1
+  % cd Mixminion-0.0.3
   % make download-openssl
   % make build-openssl
   % make
@@ -199,6 +206,10 @@
      compile and link options directly, like this:
             make OPENSSL_CFLAGS='-I/home/ssl/include' \
                  OPENSSL_LDFLAGS='-L/home/ssl/libraries -lssl097 -lcrypto097'
+
+     If your C compiler knows where to find OpenSSL on its own, but the
+     build script doesn't trust it, you can disable searching like this:
+            make SKIP_OPENSSL_SEARCH=y
 
      If you get any other errors, please report them to <nickm@freehaven.net>.