diff options
-rw-r--r-- | CHANGES.rst | 18 | ||||
-rw-r--r-- | coverage/version.py | 2 | ||||
-rw-r--r-- | doc/conf.py | 4 | ||||
-rw-r--r-- | doc/index.rst | 2 |
4 files changed, 16 insertions, 10 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 8a3e742f..87868184 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,6 +6,18 @@ Change history for Coverage.py ============================== +.. _changes_434: + +Version 4.3.4 --- 2017-01-17 +---------------------------- + +- Fixing 2.6 in version 4.3.3 broke other things, because the too-tricky + exception wasn't properly derived from Exception, described in `issue 556`_. + A newb mistake; it hasn't been a good few days. + +.. _issue 556: https://bitbucket.org/ned/coveragepy/issues/556/43-fails-if-there-are-html-files-in-the + + .. _changes_433: Version 4.3.3 --- 2017-01-17 @@ -65,12 +77,6 @@ Version 4.3.2 --- 2017-01-16 .. _issue 551: https://bitbucket.org/ned/coveragepy/issues/551/coveragepy-cannot-be-imported-in-jython27 -Unreleased ----------- - -Nothing yet. - - .. _changes_431: Version 4.3.1 --- 2016-12-28 diff --git a/coverage/version.py b/coverage/version.py index 1bdd86ac..4d08bca3 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, 3, 4, 'alpha', 0) +version_info = (4, 3, 4, 'final', 0) def _make_version(major, minor, micro, releaselevel, serial): diff --git a/doc/conf.py b/doc/conf.py index 1a74389e..37c50aca 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.3' # CHANGEME +version = '4.3.4' # CHANGEME # The full version, including alpha/beta/rc tags. -release = '4.3.3' # CHANGEME +release = '4.3.4' # 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 5fa6b151..29f79d75 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -62,7 +62,7 @@ not. .. ifconfig:: not prerelease - The latest version is coverage.py 4.3.3, released January 17th 2017. It + The latest version is coverage.py 4.3.4, released January 17th 2017. It is supported on: * Python versions 2.6, 2.7, 3.3, 3.4, 3.5, and 3.6. |