[Checkins] SVN: z3c.coverage/trunk/ Rename the main script to coveragereport, to avoid clashes with coverage.

Marius Gedminas marius at pov.lt
Thu Feb 11 04:38:19 EST 2010


Log message for revision 108922:
  Rename the main script to coveragereport, to avoid clashes with coverage.
  
  Bump version number to 1.2.0dev.
  
  

Changed:
  U   z3c.coverage/trunk/CHANGES.txt
  U   z3c.coverage/trunk/README.txt
  U   z3c.coverage/trunk/setup.py
  U   z3c.coverage/trunk/src/z3c/coverage/coveragediff.txt

-=-
Modified: z3c.coverage/trunk/CHANGES.txt
===================================================================
--- z3c.coverage/trunk/CHANGES.txt	2010-02-11 08:17:21 UTC (rev 108921)
+++ z3c.coverage/trunk/CHANGES.txt	2010-02-11 09:38:18 UTC (rev 108922)
@@ -2,11 +2,13 @@
 CHANGES
 =======
 
-1.1.4 (unreleased)
+1.2.0 (unreleased)
 ------------------
 
-- ...
+- Rename the ``coverage`` script to ``coveragereport``, to avoid name clashes
+  with Ned Batchelder's excellent coverage.py.
 
+
 1.1.3 (2009-07-24)
 ------------------
 

Modified: z3c.coverage/trunk/README.txt
===================================================================
--- z3c.coverage/trunk/README.txt	2010-02-11 08:17:21 UTC (rev 108921)
+++ z3c.coverage/trunk/README.txt	2010-02-11 09:38:18 UTC (rev 108922)
@@ -1,5 +1,6 @@
 This package produces a nice HTML representation of the coverage data
-generated by the Zope test runner.
+generated by the Zope test runner, ``zope.testing``.  It will also
+highlighting Python syntax if you have ``enscript`` installed.
 
-It also has a script to check for differences in coverage and report
+There's also a script to check for differences in coverage and report
 any regressions (increases in the number of untested lines).

Modified: z3c.coverage/trunk/setup.py
===================================================================
--- z3c.coverage/trunk/setup.py	2010-02-11 08:17:21 UTC (rev 108921)
+++ z3c.coverage/trunk/setup.py	2010-02-11 09:38:18 UTC (rev 108922)
@@ -23,7 +23,7 @@
 
 setup (
     name='z3c.coverage',
-    version='1.1.4dev',
+    version='1.2.0dev',
     author = "Zope Community",
     author_email = "zope3-dev at zope.org",
     description = "A script to visualize coverage reports via HTML",
@@ -64,7 +64,7 @@
         ],
     entry_points = """
         [console_scripts]
-        coverage = z3c.coverage.coveragereport:main
+        coveragereport = z3c.coverage.coveragereport:main
         coveragediff = z3c.coverage.coveragediff:main
         """,
     zip_safe = False,

Modified: z3c.coverage/trunk/src/z3c/coverage/coveragediff.txt
===================================================================
--- z3c.coverage/trunk/src/z3c/coverage/coveragediff.txt	2010-02-11 08:17:21 UTC (rev 108921)
+++ z3c.coverage/trunk/src/z3c/coverage/coveragediff.txt	2010-02-11 09:38:18 UTC (rev 108922)
@@ -269,7 +269,7 @@
 ~~~~~~~~~~~~~~~~~~
 
 Report emailer can also include links to web pages with the coverage reports
-(e.g. the ones you can get from the ``coverage`` tool distributed with
+(e.g. the ones you can get from the ``coveragereport`` tool distributed with
 ``z3c.coverage``).
 
     >>> emailer = ReportEmailer('Some Bot <bot at example.com>',



More information about the checkins mailing list