Skip to content

Commit

Permalink
Bring CHANGES.txt up to 2.0.0 version.
Browse files Browse the repository at this point in the history
  • Loading branch information
brunns committed Jan 15, 2020
1 parent e07fa8a commit e0dd465
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
15 changes: 10 additions & 5 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/hamcrest/__init__.py
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit e0dd465

Please sign in to comment.