[Checkins] SVN: z3c.formdemo/trunk/ Get ready for the 1.3.0 release. We can now also do coverage.

Stephan Richter srichter at cosmos.phy.tufts.edu
Wed Jul 18 17:56:52 EDT 2007


Log message for revision 78129:
  Get ready for the 1.3.0 release. We can now also do coverage.
  

Changed:
  U   z3c.formdemo/trunk/CHANGES.txt
  U   z3c.formdemo/trunk/buildout.cfg
  U   z3c.formdemo/trunk/setup.py

-=-
Modified: z3c.formdemo/trunk/CHANGES.txt
===================================================================
--- z3c.formdemo/trunk/CHANGES.txt	2007-07-18 21:38:58 UTC (rev 78128)
+++ z3c.formdemo/trunk/CHANGES.txt	2007-07-18 21:56:52 UTC (rev 78129)
@@ -2,7 +2,7 @@
 CHANGES
 =======
 
-Version 1.3.0 (??/??/2007)
+Version 1.3.0 (7/18/2007)
 -------------------------
 
 - Feature: Created functional tests for the demos.

Modified: z3c.formdemo/trunk/buildout.cfg
===================================================================
--- z3c.formdemo/trunk/buildout.cfg	2007-07-18 21:38:58 UTC (rev 78128)
+++ z3c.formdemo/trunk/buildout.cfg	2007-07-18 21:56:52 UTC (rev 78129)
@@ -1,11 +1,15 @@
 [buildout]
 develop = .
-parts = demo test
+parts = demo test coverage
 
 [test]
 recipe = zc.recipe.testrunner
 eggs = z3c.formdemo [app, test]
 
+[coverage]
+recipe = zc.recipe.egg
+eggs = z3c.coverage
+
 [zope3]
 location = .
 

Modified: z3c.formdemo/trunk/setup.py
===================================================================
--- z3c.formdemo/trunk/setup.py	2007-07-18 21:38:58 UTC (rev 78128)
+++ z3c.formdemo/trunk/setup.py	2007-07-18 21:56:52 UTC (rev 78129)
@@ -23,7 +23,7 @@
 
 setup (
     name='z3c.formdemo',
-    version='1.3.0b1',
+    version='1.3.0',
     author = "Stephan Richter, Roger Ineichen and the Zope Community",
     author_email = "zope3-dev at zope.org",
     description = "A set of demo applications for z3c.form and z3c.formui",
@@ -35,7 +35,7 @@
     license = "ZPL 2.1",
     keywords = "zope3 form widget",
     classifiers = [
-        'Development Status :: 4 - Beta',
+        'Development Status :: 5 - Production/Stable',
         'Environment :: Web Environment',
         'Intended Audience :: Developers',
         'License :: OSI Approved :: Zope Public License',
@@ -64,7 +64,8 @@
                'zope.app.wsgi',
                'zope.contentprovider',
                ],
-        test = ['z3c.etestbrowser',
+        test = ['z3c.coverage',
+                'z3c.etestbrowser',
                 'zope.app.testing'],
         ),
     install_requires = [



More information about the Checkins mailing list