diff options
| -rw-r--r-- | NEWS | 13 | ||||
| -rw-r--r-- | testtools/__init__.py | 2 |
2 files changed, 11 insertions, 4 deletions
@@ -1,8 +1,15 @@ testtools NEWS ++++++++++++++ -NEXT -~~~~ +0.9.6 +~~~~~ + +Nothing major in this release, just enough small bits and pieces to make it +useful enough to upgrade to. + +In particular, a serious bug in assertThat() has been fixed, it's easier to +write Matchers, there's a TestCase.patch() method for those inevitable monkey +patches and TestCase.assertEqual gives slightly nicer errors. Improvements ------------ @@ -17,7 +24,7 @@ Improvements custom Matchers aren't compelled to make their own subclass. * jml added a built-in UTF8_TEXT ContentType to make it slightly easier to - add details to test results. + add details to test results. See bug #520044. * Fix a bug in our built-in matchers where assertThat would blow up if any of them failed. All built-in mismatch objects now provide get_details(). diff --git a/testtools/__init__.py b/testtools/__init__.py index efb6f9e..bbd659c 100644 --- a/testtools/__init__.py +++ b/testtools/__init__.py @@ -59,4 +59,4 @@ from testtools.testsuite import ( # If the releaselevel is 'final', then the tarball will be major.minor.micro. # Otherwise it is major.minor.micro~$(revno). -__version__ = (0, 9, 5, 'final', 0) +__version__ = (0, 9, 6, 'final', 0) |
