[Checkins] SVN: z3c.pt/trunk/ Preparing point release.

Malthe Borch mborch at gmail.com
Mon Jul 6 08:04:58 EDT 2009


Log message for revision 101614:
  Preparing point release.

Changed:
  U   z3c.pt/trunk/CHANGES.txt
  U   z3c.pt/trunk/README.txt
  U   z3c.pt/trunk/setup.py

-=-
Modified: z3c.pt/trunk/CHANGES.txt
===================================================================
--- z3c.pt/trunk/CHANGES.txt	2009-07-06 12:02:07 UTC (rev 101613)
+++ z3c.pt/trunk/CHANGES.txt	2009-07-06 12:04:57 UTC (rev 101614)
@@ -1,9 +1,10 @@
 Changelog
 ---------
 
-1.0b18 (unreleased)
-~~~~~~~~~~~~~~~~~~~
+1.0.0 (2009/07/06)
+~~~~~~~~~~~~~~~~~~
 
+- First point release.
 
 1.0b17 (2009/06/14)
 ~~~~~~~~~~~~~~~~~~~

Modified: z3c.pt/trunk/README.txt
===================================================================
--- z3c.pt/trunk/README.txt	2009-07-06 12:02:07 UTC (rev 101613)
+++ z3c.pt/trunk/README.txt	2009-07-06 12:04:57 UTC (rev 101614)
@@ -1,10 +1,12 @@
 Overview
 ========
 
-This package extends ``chameleon.zpt`` to provide application-level
-template support corresponding to ``zope.app.pagetemplate``, but using
-the fast Chameleon engine to compile templates into byte-code.
+This is a fast implementation of the ZPT template engine for Zope 3
+which uses Chameleon to compile templates to byte-code.
 
+The package provides application support equivalent to
+``zope.app.pagetemplate``.
+
 For usage, see the README.txt file inside the package.
 
 

Modified: z3c.pt/trunk/setup.py
===================================================================
--- z3c.pt/trunk/setup.py	2009-07-06 12:02:07 UTC (rev 101613)
+++ z3c.pt/trunk/setup.py	2009-07-06 12:04:57 UTC (rev 101614)
@@ -1,7 +1,8 @@
 from setuptools import setup, find_packages
 import sys
-version = '1.0b18'
 
+version = '1.0.0'
+
 install_requires = [
     'setuptools',
     'zope.interface',
@@ -9,7 +10,7 @@
     'zope.i18n >= 3.5',
     'zope.traversing',
     'zope.contentprovider',
-    'chameleon.zpt >= 1.0b17',
+    'chameleon.zpt >= 1.0.0',
     ]
 
 if sys.version_info[:3] < (2,5,0):
@@ -17,9 +18,7 @@
 
 setup(name='z3c.pt',
       version=version,
-      description="Python template compiler which supports the Genshi and "
-                  "ZPT template languages including macro extensions and "
-                  "internationalization.",
+      description="Fast ZPT template engine.",
       long_description=open("README.txt").read() + open("CHANGES.txt").read(),
       classifiers=[
         "Programming Language :: Python",



More information about the Checkins mailing list