summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2017-04-04 14:44:25 -0400
committerNed Batchelder <ned@nedbatchelder.com>2017-04-04 14:44:25 -0400
commit0970258c170de774c908c69d5b80714159381fc3 (patch)
treedc5ed631aea924e8aba9d2dd71c1c14ef7a23300
parent55844cf9d5b18bc1ff065ca620cc561905b6b439 (diff)
downloadpython-coveragepy-0970258c170de774c908c69d5b80714159381fc3.tar.gz
Paperwork for 4.4b1coverage-4.4b1
-rw-r--r--CHANGES.rst4
-rw-r--r--README.rst5
-rw-r--r--coverage/version.py2
-rw-r--r--doc/conf.py4
-rw-r--r--doc/index.rst4
5 files changed, 11 insertions, 8 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 1cd1097..027027c 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -6,8 +6,8 @@ Change history for Coverage.py
==============================
-Unreleased
-----------
+Version 4.4b1 --- 2017-04-04
+----------------------------
- Some warnings can now be individually disabled. Warnings that can be
disabled have a short name appended. The ``[run] disable_warnings`` setting
diff --git a/README.rst b/README.rst
index e5630ea..4b95f1c 100644
--- a/README.rst
+++ b/README.rst
@@ -23,6 +23,7 @@ Coverage.py runs on many versions of Python:
* CPython 2.6, 2.7 and 3.3 through 3.6.
* PyPy2 5.6 and PyPy3 5.5.
* Jython 2.7.1, though not for reporting.
+* IronPython 2.7.7, though not for reporting.
Documentation is on `Read the Docs`_. Code repository and issue tracker are on
`Bitbucket`_, with a mirrored repository on `GitHub`_.
@@ -32,7 +33,9 @@ Documentation is on `Read the Docs`_. Code repository and issue tracker are on
.. _GitHub: https://github.com/nedbat/coveragepy
-**New in 4.3:** HTML ``--skip-covered``, sys.excepthook support, tox.ini
+**New in 4.4:** Suppressable warnings, continuous coverage measurement.
+
+New in 4.3: HTML ``--skip-covered``, sys.excepthook support, tox.ini
support.
New in 4.2: better support for multiprocessing and combining data.
diff --git a/coverage/version.py b/coverage/version.py
index 06e30e3..b7f3691 100644
--- a/coverage/version.py
+++ b/coverage/version.py
@@ -5,7 +5,7 @@
# This file is exec'ed in setup.py, don't import anything!
# Same semantics as sys.version_info.
-version_info = (4, 4, 0, 'alpha', 0)
+version_info = (4, 4, 0, 'beta', 1)
def _make_version(major, minor, micro, releaselevel, serial):
diff --git a/doc/conf.py b/doc/conf.py
index 37c50ac..5d63eb1 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -56,9 +56,9 @@ copyright = u'2009\N{EN DASH}2017, Ned Batchelder' # CHANGEME
# built documents.
#
# The short X.Y version.
-version = '4.3.4' # CHANGEME
+version = '4.4' # CHANGEME
# The full version, including alpha/beta/rc tags.
-release = '4.3.4' # CHANGEME
+release = '4.4b1' # CHANGEME
# 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 98bd6a7..1b438c3 100644
--- a/doc/index.rst
+++ b/doc/index.rst
@@ -73,7 +73,7 @@ not.
.. ifconfig:: prerelease
- The latest version is coverage.py 4.3b1, released July 4th 2016. It is
+ The latest version is coverage.py 4.4b1, released April 4th 2017. It is
supported on:
* Python versions 2.6, 2.7, 3.3, 3.4, 3.5, and 3.6.
@@ -85,7 +85,7 @@ not.
* IronPython 2.7.7, though only for running code, not reporting.
**This is a pre-release build. The usual warnings about possible bugs
- apply.** The latest stable version is coverage.py 4.2, `described here`_.
+ apply.** The latest stable version is coverage.py 4.3.4, `described here`_.
.. _described here: http://nedbatchelder.com/code/coverage