summaryrefslogtreecommitdiff
path: root/doc/index.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/index.rst')
-rw-r--r--doc/index.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/index.rst b/doc/index.rst
index bec2f1bf..a5136f3e 100644
--- a/doc/index.rst
+++ b/doc/index.rst
@@ -17,6 +17,7 @@ coverage.py
:history: 20100906T134700, updated for 3.4b2.
:history: 20100919T163500, updated for 3.4 release.
:history: 20110213T081200, claim true 3.2 compatibility.
+:history: 20110604T114800, update for 3.5b1
Coverage.py is a tool for measuring code coverage of Python programs. It
monitors your program, noting which parts of the code have been executed, then
@@ -26,8 +27,8 @@ Coverage measurement is typically used to gauge the effectiveness of tests. It
can show which parts of your code are being exercised by tests, and which are
not.
-The latest version is 3.4, released 19 September 2010.
-It is supported on Python 2.3 through 3.2.
+The latest version is 3.5b1, released ?? June 2011
+It is supported on Python versions 2.3 through 3.2.
Quick start
@@ -39,7 +40,7 @@ Getting started is easy:
or by using "easy_install coverage". For a few more details, see
:ref:`install`.
-#. Use ``coverage run`` to execute your program and gather data:
+#. Use ``coverage run`` to run your program and gather data:
.. code-block:: console