Fixup NEWS, release 2.0.

This commit is contained in:
Robert Collins 2016-04-07 13:17:52 +12:00
parent 8c43eb9e04
commit 820f12bef2
1 changed files with 8 additions and 0 deletions

8
NEWS
View File

@ -6,6 +6,14 @@ fixtures release notes
NEXT
~~~~
2.0
~~~
* Monkeypatching of staticmethod's now works correctly on Python 2 and 3.
This is an API break as previously they were bound as instancemethods's
and thus any working patches need to have their first parameter (self)
dropped. (Andrew Laski)
* New class ``CompoundFixture`` added, allowing fixtures to be combined.
(Jonathan Lange)