diff --git a/CHANGES.txt b/CHANGES.txt index 61268b7a..bddf8740 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,8 @@ -=== Version 2.0.1 == +=== Version 2.0.2 === + +Various type hint bug fixes. + +=== Version 2.0.1 === * Make hamcrest package PEP 561 compatible, i.e. supply type hints for external use. diff --git a/src/hamcrest/__init__.py b/src/hamcrest/__init__.py index bf9eea4c..7a362571 100644 --- a/src/hamcrest/__init__.py +++ b/src/hamcrest/__init__.py @@ -1,7 +1,7 @@ from hamcrest.core import * from hamcrest.library import * -__version__ = "2.0.1" +__version__ = "2.0.2" __author__ = "Chris Rose" __copyright__ = "Copyright 2020 hamcrest.org" __license__ = "BSD, see License.txt"