[Checkins] SVN: z3c.layer.trusted/trunk/ Get ready for release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Thu Jan 24 22:39:04 EST 2008


Log message for revision 83213:
  Get ready for release.
  

Changed:
  U   z3c.layer.trusted/trunk/CHANGES.txt
  U   z3c.layer.trusted/trunk/setup.py

-=-
Modified: z3c.layer.trusted/trunk/CHANGES.txt
===================================================================
--- z3c.layer.trusted/trunk/CHANGES.txt	2008-01-25 03:38:51 UTC (rev 83212)
+++ z3c.layer.trusted/trunk/CHANGES.txt	2008-01-25 03:39:03 UTC (rev 83213)
@@ -2,22 +2,23 @@
 CHANGES
 =======
 
-1.0.1dev (unreleased)
----------------------
+1.0.1 (2008-01-24)
+------------------
 
-- ...
+- Bug: Corrected and improved meta-data and documentation.
 
 
-1.0.0 (2007-01.21)
+1.0.0 (2008-01-21)
 ------------------
 
-- move z3c.layer.trusted package to it's own top level package
-  form zope.layer to z3c.layer.trusted
+- Restructure: Move ``z3c.layer.trusted`` package to it's own top level
+  package form ``zope.layer`` to ``z3c.layer.trusted``.
 
-- Reflect changes in zope.app.securitypolicy zcml configuration. Prevent
-  loading deprecated module configuration
+- Bug: Reflect changes in ``zope.app.securitypolicy`` ZCML
+  configuration. Prevent loading deprecated module configuration.
 
-- moved implementation from z3c.layer to z3c.layer.trusted
+- Restructure: Moved implementation from ``z3c.layer`` to
+  ``z3c.layer.trusted``.
 
 
 0.2.3 (2007-11-07)
@@ -32,7 +33,7 @@
 0.2.2 (2007-10-31)
 ------------------
 
-- Fixed package meta-data.
+- Bug: Fixed package meta-data.
 
 - Bug: Fixed test failures due to depency updates.
 

Modified: z3c.layer.trusted/trunk/setup.py
===================================================================
--- z3c.layer.trusted/trunk/setup.py	2008-01-25 03:38:51 UTC (rev 83212)
+++ z3c.layer.trusted/trunk/setup.py	2008-01-25 03:39:03 UTC (rev 83213)
@@ -16,22 +16,28 @@
 
 $Id:$
 """
-
 import os
+import xml.sax.saxutils
 from setuptools import setup, find_packages
 
 def read(*rnames):
-    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+    text = open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+    return xml.sax.saxutils.escape(text)
 
 setup(
     name = 'z3c.layer.trusted',
-    version = '1.0.1dev',
+    version = '1.0.1',
     author='Zope Foundation and Contributors',
-    author_email='zope3-dev at zope.org',
+    author_email='zope-dev at zope.org',
     description = "Trusted layer setup for Zope3",
     long_description=(
         read('README.txt')
         + '\n\n' +
+        'Detailed Documentation\n'
+        '**********************'
+        + '\n\n' +
+        read('src', 'z3c', 'layer', 'trusted', 'README.txt')
+        + '\n\n' +
         read('CHANGES.txt')
         ),
     keywords = "z3c trusted layer zope zope3",
@@ -45,7 +51,7 @@
         'Operating System :: OS Independent',
         'Topic :: Internet :: WWW/HTTP',
         'Framework :: Zope3'],
-    url='http://cheeseshop.python.org/pypi/z3c.layer.trusted',
+    url='http://pypi.python.org/pypi/z3c.layer.trusted',
     license='ZPL 2.1',
     packages = find_packages('src'),
     include_package_data = True,



More information about the Checkins mailing list