# HG changeset patch # User paulb # Date 1183846350 0 # Node ID f998de52200e036dbf0f94d5fabe2b87e5ab8804 # Parent 77b0b68f9489422e3f4cff09f3ef9c41a13c1104 [project @ 2007-07-07 22:12:30 by paulb] Updated release information. Relicensed under the LGPLv3. diff -r 77b0b68f9489 -r f998de52200e PKG-INFO --- a/PKG-INFO Sun Apr 08 00:03:10 2007 +0000 +++ b/PKG-INFO Sat Jul 07 22:12:30 2007 +0000 @@ -1,13 +1,13 @@ Metadata-Version: 1.1 Name: parallel -Version: 0.2.4 +Version: 0.2.5 Author: Paul Boddie Author-email: paul at boddie org uk Maintainer: Paul Boddie Maintainer-email: paul at boddie org uk -Download-url: http://www.boddie.org.uk/python/downloads/parallel-0.2.4.tar.gz +Download-url: http://www.boddie.org.uk/python/downloads/parallel-0.2.5.tar.gz Summary: Elementary parallel programming for Python -License: LGPL +License: LGPL (version 3 or later) Description: The pprocess module provides elementary support for parallel programming in Python using a fork-based process creation model in conjunction with a channel-based communications model implemented diff -r 77b0b68f9489 -r f998de52200e README.txt --- a/README.txt Sun Apr 08 00:03:10 2007 +0000 +++ b/README.txt Sat Jul 07 22:12:30 2007 +0000 @@ -51,7 +51,7 @@ paul@boddie.org.uk Copyright and licence information can be found in the docs directory - see -docs/COPYING.txt and docs/LICENCE.txt for more information. +docs/COPYING.txt, docs/lgpl-3.0.txt and docs/gpl-3.0.txt for more information. For the PyGmy raytracer example, different copyright and licence information is provided in the docs directory - see docs/COPYING-PyGmy.txt and @@ -63,6 +63,16 @@ This software depends on standard library features which are stated as being available only on "UNIX"; it has only been tested on a GNU/Linux system. +New in parallel 0.2.5 (Changes since parallel 0.2.4) +---------------------------------------------------- + + * Added a start method to the Exchange class for more convenient creation of + processes. + * Relicensed under the LGPL (version 3 or later) - this also fixes the + contradictory situation where the GPL was stated in the pprocess module + (which was not, in fact, the intention) and the LGPL was stated in the + documentation. + New in parallel 0.2.4 (Changes since parallel 0.2.3) ----------------------------------------------------