[Checkins] SVN: z3c.coverage/trunk/ Fixed a bug and get ready for release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Thu Jan 31 15:48:28 EST 2008


Log message for revision 83344:
  Fixed a bug and get ready for release.
  

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

-=-
Modified: z3c.coverage/trunk/CHANGES.txt
===================================================================
--- z3c.coverage/trunk/CHANGES.txt	2008-01-31 19:57:52 UTC (rev 83343)
+++ z3c.coverage/trunk/CHANGES.txt	2008-01-31 20:48:27 UTC (rev 83344)
@@ -2,6 +2,12 @@
 CHANGES
 =======
 
+1.1.1 (2008-01-31)
+------------------
+
+- Bug: When the package was released, the test which tests the availability of
+  an SVN revision number failed. Made the test more reliable.
+
 1.1.0 (2008-01-29)
 ------------------
 

Modified: z3c.coverage/trunk/setup.py
===================================================================
--- z3c.coverage/trunk/setup.py	2008-01-31 19:57:52 UTC (rev 83343)
+++ z3c.coverage/trunk/setup.py	2008-01-31 20:48:27 UTC (rev 83344)
@@ -23,7 +23,7 @@
 
 setup (
     name='z3c.coverage',
-    version='1.1.1dev',
+    version='1.1.1',
     author = "Zope Community",
     author_email = "zope3-dev at zope.org",
     description = "A script to visualize coverage reports via HTML",

Modified: z3c.coverage/trunk/src/z3c/coverage/README.txt
===================================================================
--- z3c.coverage/trunk/src/z3c/coverage/README.txt	2008-01-31 19:57:52 UTC (rev 83343)
+++ z3c.coverage/trunk/src/z3c/coverage/README.txt	2008-01-31 20:48:27 UTC (rev 83344)
@@ -144,8 +144,8 @@
 file. If it fails, "UNKNOWN" is returned:
 
   >>> path = os.path.split(z3c.coverage.__file__)[0]
-  >>> coveragereport.get_svn_revision(path)
-  '8...M'
+  >>> coveragereport.get_svn_revision(path) != 'UNKNOWN'
+  True
 
   >>> coveragereport.get_svn_revision(path + '/__init__.py')
   'UNKNOWN'



More information about the Checkins mailing list