diff --git a/CHANGES.txt b/CHANGES.txt index 38e71137..cac617a1 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,18 +1,23 @@ -=== Version 1.10.0 == +=== Version 2.0.0 == -Add support up to Python 3.8 Drop formal support for 2.x Drop formal support for 3.x < 3.5 -Fix #66 - deprecate contains() in favour of contains_exactly(). -Fix #72 - make has_properties mismatch description less verbose by adding option to AllOf not to include matcher description in its mismatch messages. -Fix #82 - include exception details in mismatch description. +Fix #128 - raises() grows support for additional matchers on exception object. * Made has_properties() report all mismatches, not just the first. * Silence warnings. * Type fixes. * Remove obsolete dependencies. +=== Version 1.10.1 == + +Add support up to Python 3.8 + +Fix #66 - deprecate contains() in favour of contains_exactly(). +Fix #72 - make has_properties mismatch description less verbose by adding option to AllOf not to include matcher description in its mismatch messages. +Fix #82 - include exception details in mismatch description. + === Version 1.9.0 == Drop formal support for 2.x < 2.7 diff --git a/src/hamcrest/__init__.py b/src/hamcrest/__init__.py index 0bf17154..aee100ef 100644 --- a/src/hamcrest/__init__.py +++ b/src/hamcrest/__init__.py @@ -1,7 +1,7 @@ from hamcrest.core import * from hamcrest.library import * -__version__ = "1.10.0" +__version__ = "2.0.0" __author__ = "Chris Rose" __copyright__ = "Copyright 2020 hamcrest.org" __license__ = "BSD, see License.txt"