summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-01-23 17:17:51 -0500
committerNed Batchelder <ned@nedbatchelder.com>2016-01-23 17:17:51 -0500
commitb69ad60ea3c3dec868e6cf24a716ac145db6cedc (patch)
tree3a169b6bfb133306565331317e42892e568e598d
parent7eedbb53dff617896cf054f13469c5e210f788b4 (diff)
downloadpython-coveragepy-git-b69ad60ea3c3dec868e6cf24a716ac145db6cedc.tar.gz
Doc file changes for 4.1b2coverage-4.1b2
-rw-r--r--CHANGES.rst8
-rw-r--r--doc/changes.rst8
-rw-r--r--doc/conf.py2
-rw-r--r--doc/index.rst21
4 files changed, 25 insertions, 14 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index df780364..d78dfedc 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -6,8 +6,8 @@ Change history for Coverage.py
==============================
-Unreleased
-----------
+Version 4.1b2 --- 2016-01-23
+----------------------------
- Problems with the new branch measurement in 4.1 beta 1 were fixed:
@@ -22,7 +22,7 @@ Unreleased
This has been fixed, closing `issue 466`_.
- The XML report now produces correct package names for modules found in
- directories specified with ``source=``. Fixes ``issue 465``_.
+ directories specified with ``source=``. Fixes `issue 465`_.
- ``coverage report`` won't produce trailing whitespace.
@@ -44,7 +44,7 @@ Version 4.1b1 --- 2016-01-10
- Python 3.5's ``async`` and ``await`` keywords are properly supported, fixing
`issue 434`_.
- - A some long-standing branch coverage bugs were fixed:
+ - Some long-standing branch coverage bugs were fixed:
- `issue 129`_: functions with only a docstring for a body would incorrectly
report a missing branch on the ``def`` line.
diff --git a/doc/changes.rst b/doc/changes.rst
index e2f65b31..46459b13 100644
--- a/doc/changes.rst
+++ b/doc/changes.rst
@@ -49,7 +49,7 @@ history, see the `CHANGES.rst`_ file in the source tree.
.. _changes_41:
-Version 4.1b1 pre-release --- 2016-01-10
+Version 4.1b2 pre-release --- 2016-01-23
----------------------------------------
- Branch analysis has been rewritten: it used to be based on bytecode, but now
@@ -63,7 +63,7 @@ Version 4.1b1 pre-release --- 2016-01-10
- Python 3.5's ``async`` and ``await`` keywords are properly supported, fixing
`issue 434`_.
- - A some long-standing branch coverage bugs were fixed:
+ - Some long-standing branch coverage bugs were fixed:
- `issue 129`_: functions with only a docstring for a body would incorrectly
report a missing branch on the ``def`` line.
@@ -85,6 +85,9 @@ Version 4.1b1 pre-release --- 2016-01-10
- Multiprocessing support is now available on Windows. Thanks, Rodrigue
Cloutier.
+- The XML report now produces correct package names for modules found in
+ directories specified with ``source=``. Fixes `issue 465`_.
+
.. _issue 129: https://bitbucket.org/ned/coveragepy/issues/129/misleading-branch-coverage-of-empty
.. _issue 131: https://bitbucket.org/ned/coveragepy/issues/131/pragma-on-a-decorator-line-should-affect
.. _issue 146: https://bitbucket.org/ned/coveragepy/issues/146/context-managers-confuse-branch-coverage
@@ -92,6 +95,7 @@ Version 4.1b1 pre-release --- 2016-01-10
.. _issue 422: https://bitbucket.org/ned/coveragepy/issues/422/python35-partial-branch-marked-as-fully
.. _issue 434: https://bitbucket.org/ned/coveragepy/issues/434/indexerror-in-python-35
.. _issue 461: https://bitbucket.org/ned/coveragepy/issues/461/multiline-asserts-need-too-many-pragma
+.. _issue 465: https://bitbucket.org/ned/coveragepy/issues/465/coveragexml-produces-package-names-with-an
.. _changes_403:
diff --git a/doc/conf.py b/doc/conf.py
index cc57d500..71ece5bf 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -58,7 +58,7 @@ copyright = u'2009\N{EN DASH}2016, Ned Batchelder'
# The short X.Y version.
version = '4.1'
# The full version, including alpha/beta/rc tags.
-release = '4.1b1'
+release = '4.1b2'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/doc/index.rst b/doc/index.rst
index 010db6ec..61f7ea94 100644
--- a/doc/index.rst
+++ b/doc/index.rst
@@ -44,6 +44,7 @@ Coverage.py
.. :history: 20151104T050900, updated for 4.0.2
.. :history: 20151124T065900, updated for 4.0.3
.. :history: 20160110T125900, updated for 4.1b1
+.. :history: 20160123T171300, updated for 4.1b2
Coverage.py is a tool for measuring code coverage of Python programs. It
@@ -56,8 +57,8 @@ not.
.. ifconfig:: not prerelease
- The latest version is coverage.py 4.0.3, released November 24th, 2015.
- It is supported on:
+ The latest version is coverage.py 4.0.3, released November 24th, 2015. It
+ is supported on:
* Python versions 2.6, 2.7, 3.3, 3.4, and 3.5
* PyPy 2.4, 2.6, and 4.0
@@ -65,11 +66,17 @@ not.
.. ifconfig:: prerelease
- The latest version is coverage.py 4.1b1, released January 10th, 2016.
- It is supported on Python versions 2.6, 2.7, 3.3, 3.4, and 3.5, as well
- as PyPy 2.4 and 2.6, and PyPy3 2.4.
- **This is a pre-release build. The usual warnings about possible bugs apply.**
- The latest stable version is coverage.py 4.0.3, `described here`_.
+ The latest version is coverage.py 4.1b2, released January 23rd, 2016. It
+ is supported on:
+
+ * Python versions 2.6, 2.7, 3.3, 3.4, and 3.5.
+
+ * PyPy 2.4, 2.6, and 4.0
+
+ * PyPy3 2.4.
+
+ **This is a pre-release build. The usual warnings about possible bugs
+ apply.** The latest stable version is coverage.py 4.0.3, `described here`_.
.. _described here: http://nedbatchelder.com/code/coverage