summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2017-11-04 22:48:27 -0400
committerNed Batchelder <ned@nedbatchelder.com>2017-11-04 22:48:27 -0400
commitdd798180befd7bd34fc0f69a469598a8cb863cef (patch)
treeababa2570d7f095ca2bbbb7e2a1a2556abfc6758
parent781fe6a219e1b643c24a8612fea4c8f4fb458267 (diff)
downloadpython-coveragepy-git-dd798180befd7bd34fc0f69a469598a8cb863cef.tar.gz
Version 4.4.2 prep
-rw-r--r--CHANGES.rst4
-rw-r--r--README.rst4
-rw-r--r--coverage/version.py2
-rw-r--r--doc/conf.py2
-rw-r--r--doc/index.rst6
-rw-r--r--setup.py1
6 files changed, 10 insertions, 9 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 58146ad4..f42db247 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -5,8 +5,8 @@
Change history for Coverage.py
==============================
-Unreleased
-----------
+Version 4.4.2 --- 2017-11-05
+----------------------------
- Support for Python 3.7. In some cases, class and module docstrings are no
longer counted in statement totals, which could slightly change your total
diff --git a/README.rst b/README.rst
index 39d62012..6c71f4ff 100644
--- a/README.rst
+++ b/README.rst
@@ -106,8 +106,8 @@ Licensed under the `Apache 2.0 License`_. For details, see `NOTICE.txt`_.
.. |codecov| image:: http://codecov.io/github/nedbat/coveragepy/coverage.svg?branch=master&precision=2
:target: http://codecov.io/github/nedbat/coveragepy?branch=master
:alt: Coverage!
-.. |commits-since| image:: https://img.shields.io/github/commits-since/nedbat/coveragepy/coverage-4.3.4.svg
- :target: https://github.com/nedbat/coveragepy/compare/coverage-4.4...master
+.. |commits-since| image:: https://img.shields.io/github/commits-since/nedbat/coveragepy/coverage-4.4.2.svg
+ :target: https://github.com/nedbat/coveragepy/compare/coverage-4.4.2...master
:alt: See latest work
.. |saythanks| image:: https://img.shields.io/badge/saythanks.io-%E2%98%BC-1EAEDB.svg
:target: https://saythanks.io/to/nedbat
diff --git a/coverage/version.py b/coverage/version.py
index 6c63d5a4..8a7e99eb 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, 2, 'alpha', 0)
+version_info = (4, 4, 2, 'final', 0)
def _make_version(major, minor, micro, releaselevel, serial):
diff --git a/doc/conf.py b/doc/conf.py
index 099ab0cb..ebffb4a7 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.1' # CHANGEME
+release = '4.4.2' # 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 0d8e752c..92755f4b 100644
--- a/doc/index.rst
+++ b/doc/index.rst
@@ -62,12 +62,12 @@ not.
.. ifconfig:: not prerelease
- The latest version is coverage.py 4.4.1, released May 14th 2017. It
+ The latest version is coverage.py 4.4.2, released November 5th 2017. It
is supported on:
- * Python versions 2.6, 2.7, 3.3, 3.4, 3.5, and 3.6.
+ * Python versions 2.6, 2.7, 3.3, 3.4, 3.5, 3.6, and 3.7.
- * PyPy2 5.6 and PyPy3 5.5.
+ * PyPy2 5.9 and PyPy3 5.9.
* Jython 2.7.1, though only for running code, not reporting.
diff --git a/setup.py b/setup.py
index 4719e7af..188ee9a5 100644
--- a/setup.py
+++ b/setup.py
@@ -31,6 +31,7 @@ Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
+Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Programming Language :: Python :: Implementation :: Jython