diff --git a/NEWS b/NEWS index 35dc57d..de16ec7 100644 --- a/NEWS +++ b/NEWS @@ -4,8 +4,14 @@ testtools NEWS Changes and improvements to testtools_, grouped by release. -NEXT -~~~~ +0.9.15 +~~~~~~ + +This is the last release to support Python2.4 and 2.5. It brings in a slew of +improvements to test tagging and concurrency, making running large test suites +with partitioned workers more reliable and easier to reproduce exact test +ordering in a given worker. See our sister project ``testrepository`` for a +test runner that uses these features. Changes ------- diff --git a/testtools/__init__.py b/testtools/__init__.py index 4ca659d..e3e7909 100644 --- a/testtools/__init__.py +++ b/testtools/__init__.py @@ -86,4 +86,4 @@ from testtools.distutilscmd import ( # If the releaselevel is 'final', then the tarball will be major.minor.micro. # Otherwise it is major.minor.micro~$(revno). -__version__ = (0, 9, 15, 'dev', 0) +__version__ = (0, 9, 15, 'final', 0)