Skip to content

Commit ffe96ae

Browse files
committed
Paperwork for 4.4b1
1 parent e715804 commit ffe96ae

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

CHANGES.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Change history for Coverage.py
66
==============================
77

88

9-
Unreleased
10-
----------
9+
Version 4.4b1 --- 2017-04-04
10+
----------------------------
1111

1212
- Some warnings can now be individually disabled. Warnings that can be
1313
disabled have a short name appended. The ``[run] disable_warnings`` setting

README.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Coverage.py runs on many versions of Python:
2323
* CPython 2.6, 2.7 and 3.3 through 3.6.
2424
* PyPy2 5.6 and PyPy3 5.5.
2525
* Jython 2.7.1, though not for reporting.
26+
* IronPython 2.7.7, though not for reporting.
2627

2728
Documentation is on `Read the Docs`_. Code repository and issue tracker are on
2829
`Bitbucket`_, with a mirrored repository on `GitHub`_.
@@ -32,7 +33,9 @@ Documentation is on `Read the Docs`_. Code repository and issue tracker are on
3233
.. _GitHub: https://github.com/nedbat/coveragepy
3334

3435

35-
**New in 4.3:** HTML ``--skip-covered``, sys.excepthook support, tox.ini
36+
**New in 4.4:** Suppressable warnings, continuous coverage measurement.
37+
38+
New in 4.3: HTML ``--skip-covered``, sys.excepthook support, tox.ini
3639
support.
3740

3841
New in 4.2: better support for multiprocessing and combining data.

coverage/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# This file is exec'ed in setup.py, don't import anything!
66

77
# Same semantics as sys.version_info.
8-
version_info = (4, 4, 0, 'alpha', 0)
8+
version_info = (4, 4, 0, 'beta', 1)
99

1010

1111
def _make_version(major, minor, micro, releaselevel, serial):

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
5656
# built documents.
5757
#
5858
# The short X.Y version.
59-
version = '4.3.4' # CHANGEME
59+
version = '4.4' # CHANGEME
6060
# The full version, including alpha/beta/rc tags.
61-
release = '4.3.4' # CHANGEME
61+
release = '4.4b1' # CHANGEME
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.

doc/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ not.
7373

7474
.. ifconfig:: prerelease
7575

76-
The latest version is coverage.py 4.3b1, released July 4th 2016. It is
76+
The latest version is coverage.py 4.4b1, released April 4th 2017. It is
7777
supported on:
7878

7979
* Python versions 2.6, 2.7, 3.3, 3.4, 3.5, and 3.6.
@@ -85,7 +85,7 @@ not.
8585
* IronPython 2.7.7, though only for running code, not reporting.
8686

8787
**This is a pre-release build. The usual warnings about possible bugs
88-
apply.** The latest stable version is coverage.py 4.2, `described here`_.
88+
apply.** The latest stable version is coverage.py 4.3.4, `described here`_.
8989

9090
.. _described here: http://nedbatchelder.com/code/coverage
9191

0 commit comments

Comments
 (0)