[Checkins] SVN: zope.deprecation/trunk/ Separate changelog out from README.txt to be more consistent about this

Martijn Faassen faassen at infrae.com
Sat Mar 7 15:01:46 EST 2009


Log message for revision 97634:
  Separate changelog out from README.txt to be more consistent about this
  (and also easier tool access to it).
  

Changed:
  A   zope.deprecation/trunk/CHANGES.txt
  U   zope.deprecation/trunk/README.txt
  U   zope.deprecation/trunk/setup.py

-=-
Added: zope.deprecation/trunk/CHANGES.txt
===================================================================
--- zope.deprecation/trunk/CHANGES.txt	                        (rev 0)
+++ zope.deprecation/trunk/CHANGES.txt	2009-03-07 20:01:46 UTC (rev 97634)
@@ -0,0 +1,47 @@
+Releases
+********
+
+==================
+3.4.1 (unreleased)
+==================
+
+Added support to bootstrap on Jython.
+
+Fix zope.deprecation.warn() to make the signature identical to
+warnings.warn() and to check for .pyc and .pyo files.
+
+==================
+3.4.0 (2007/07/19)
+==================
+
+Release 3.4 final, corresponding to Zope 3.4.
+
+==================
+3.3.0 (2007/02/18)
+==================
+
+Corresponds to the verison of the zope.deprecation package shipped as part of
+the Zope 3.3.0 release.
+
+====================
+3.2.0.2 (2006/04/15)
+====================
+
+Fix packaging bug:  'package_dir' must be a *relative* path.
+
+==================
+3.2.0 (2006/01/05)
+==================
+
+Corresponds to the verison of the zope.deprecation package shipped as part of
+the Zope 3.2.0 release.
+
+Refactored to eliminate dependency on 'zope.proxy'. This was an especially
+bad dependency due to the required C exension in 'zope.proxy'.
+
+==================
+3.1.0 (2005/10/03)
+==================
+
+Corresponds to the verison of the zope.deprecation package shipped as part of
+the Zope 3.1.0 release.

Modified: zope.deprecation/trunk/README.txt
===================================================================
--- zope.deprecation/trunk/README.txt	2009-03-07 19:57:40 UTC (rev 97633)
+++ zope.deprecation/trunk/README.txt	2009-03-07 20:01:46 UTC (rev 97634)
@@ -7,51 +7,3 @@
 deprecated modules, classes, functions, methods and properties. This package
 provides a simple function called 'deprecated(names, reason)' to deprecate the
 previously mentioned Python objects.
-
-Releases
-********
-
-==================
-3.4.1 (unreleased)
-==================
-
-Added support to bootstrap on Jython.
-
-Fix zope.deprecation.warn() to make the signature identical to
-warnings.warn() and to check for *.pyc and *.pyo files.
-
-==================
-3.4.0 (2007/07/19)
-==================
-
-Release 3.4 final, corresponding to Zope 3.4.
-
-==================
-3.3.0 (2007/02/18)
-==================
-
-Corresponds to the verison of the zope.deprecation package shipped as part of
-the Zope 3.3.0 release.
-
-====================
-3.2.0.2 (2006/04/15)
-====================
-
-Fix packaging bug:  'package_dir' must be a *relative* path.
-
-==================
-3.2.0 (2006/01/05)
-==================
-
-Corresponds to the verison of the zope.deprecation package shipped as part of
-the Zope 3.2.0 release.
-
-Refactored to eliminate dependency on 'zope.proxy'. This was an especially
-bad dependency due to the required C exension in 'zope.proxy'.
-
-==================
-3.1.0 (2005/10/03)
-==================
-
-Corresponds to the verison of the zope.deprecation package shipped as part of
-the Zope 3.1.0 release.

Modified: zope.deprecation/trunk/setup.py
===================================================================
--- zope.deprecation/trunk/setup.py	2009-03-07 19:57:40 UTC (rev 97633)
+++ zope.deprecation/trunk/setup.py	2009-03-07 20:01:46 UTC (rev 97634)
@@ -34,6 +34,8 @@
     long_description=(
         read('README.txt')
         + '\n' +
+        read('CHANGES.txt')
+        + '\n' + 
         'Detailed Documentation\n'
         '**********************\n'
         + '\n' +



More information about the Checkins mailing list