diff options
-rw-r--r-- | CHANGES.rst | 6 | ||||
-rw-r--r-- | coverage/version.py | 2 | ||||
-rw-r--r-- | doc/conf.py | 2 | ||||
-rw-r--r-- | doc/index.rst | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 189f2754..0d4f6918 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,10 +7,10 @@ Change history for Coverage.py .. _changes_441: -Unreleased ----------- +Version 4.4.1 --- 2017-05-14 +---------------------------- -(nothing yet) +- No code changes: just corrected packaging for Python 2.7 Linux wheels. .. _changes_44: diff --git a/coverage/version.py b/coverage/version.py index 8bf62a3b..a24c2a46 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, 1, 'alpha', 0) +version_info = (4, 4, 1, 'final', 0) def _make_version(major, minor, micro, releaselevel, serial): diff --git a/doc/conf.py b/doc/conf.py index 70b124d2..b3c4140e 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -58,7 +58,7 @@ copyright = u'2009\N{EN DASH}2017, Ned Batchelder' # CHANGEME # The short X.Y version. version = '4.4' # CHANGEME # The full version, including alpha/beta/rc tags. -release = '4.4' # CHANGEME +release = '4.4.1' # 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 fb5da18e..0d21a715 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -62,7 +62,7 @@ not. .. ifconfig:: not prerelease - The latest version is coverage.py 4.4, released May 7th 2017. It + The latest version is coverage.py 4.4.1, released May 14th 2017. It is supported on: * Python versions 2.6, 2.7, 3.3, 3.4, 3.5, and 3.6. |