Release 0.9.36
authorRobert Collins <robertc@robertcollins.net>
Fri, 22 Aug 2014 02:25:19 +0000 (14:25 +1200)
committerRobert Collins <robertc@robertcollins.net>
Fri, 22 Aug 2014 02:25:19 +0000 (14:25 +1200)
Welcome to our long overdue 0.9.36 release, which improves
compatibility with Python3.4, adds assert_that, a function for using
matchers without TestCase objects, and finally will error if you try
to use setUp or tearDown twice - since that invariably leads to bad
things of one sort or another happening.

Change-Id: I04eebaf5cb0a071ef329ef00361d844ad87e5dd7

NEWS
testtools/__init__.py

diff --git a/NEWS b/NEWS
index 16845ce6eeb628aa138c9f37de2089a15e31143b..503f1eec5dc0536ca175ed3cae23a83077099a40 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -7,6 +7,15 @@ Changes and improvements to testtools_, grouped by release.
 NEXT
 ~~~~
 
+
+0.9.36
+~~~~~~
+
+Welcome to our long overdue 0.9.36 release, which improves compatibility with
+Python3.4, adds assert_that, a function for using matchers without TestCase
+objects, and finally will error if you try to use setUp or tearDown twice -
+since that invariably leads to bad things of one sort or another happening.
+
 Changes
 -------
 
index 4bf8e998e33b115be3d769bdc8a476ad38e56e53..3b296806908d68b523d1648ff2121f5d5e538b58 100644 (file)
@@ -122,4 +122,4 @@ else:
 # If the releaselevel is 'final', then the tarball will be major.minor.micro.
 # Otherwise it is major.minor.micro~$(revno).
 
-__version__ = (0, 9, 36, 'dev', 0)
+__version__ = (0, 9, 36, 'final', 0)