diff options
-rw-r--r-- | CHANGES.rst | 12 | ||||
-rw-r--r-- | README.rst | 4 | ||||
-rw-r--r-- | coverage/version.py | 2 | ||||
-rw-r--r-- | doc/conf.py | 4 | ||||
-rw-r--r-- | doc/index.rst | 2 |
5 files changed, 15 insertions, 9 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index faaba5a3..b6a82bd3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,10 +6,16 @@ Change history for Coverage.py ============================== -Unreleased ----------- +.. _changes_433: -Nothing yet. +Version 4.3.3 --- 2017-01-17 +---------------------------- + +- Python 2.6 support was broken due to a testing exception imported for the + benefit of the coverage.py test suite. Properly conditionalizing it fixed + `issue 554`_ so that Python 2.6 works again. + +.. _issue 554: https://bitbucket.org/ned/coveragepy/issues/554/traceback-on-python-26-starting-with-432 .. _changes_432: @@ -83,8 +83,8 @@ For details, see https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt. .. |codecov| image:: http://codecov.io/github/nedbat/coveragepy/coverage.svg?branch=master :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.2.svg - :target: https://github.com/nedbat/coveragepy/compare/coverage-4.3.2...master +.. |commits-since| image:: https://img.shields.io/github/commits-since/nedbat/coveragepy/coverage-4.3.3.svg + :target: https://github.com/nedbat/coveragepy/compare/coverage-4.3.3...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 1cc9fab7..8960ab45 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, 3, 'alpha', 0) +version_info = (4, 3, 3, 'final', 0) def _make_version(major, minor, micro, releaselevel, serial): diff --git a/doc/conf.py b/doc/conf.py index 55e11872..1a74389e 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.2' # CHANGEME +version = '4.3.3' # CHANGEME # The full version, including alpha/beta/rc tags. -release = '4.3.2' # CHANGEME +release = '4.3.3' # 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 7d687cb3..5fa6b151 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.2, released January 16th 2017. It + The latest version is coverage.py 4.3.3, released January 17th 2017. It is supported on: * Python versions 2.6, 2.7, 3.3, 3.4, 3.5, and 3.6. |