From 405b7539577c56991c7055d257aa72c04c9cc2ab Mon Sep 17 00:00:00 2001 From: Simon Brunning Date: Mon, 2 Mar 2020 14:37:28 +0000 Subject: [PATCH] Bump version to 2.0.2. --- CHANGES.txt | 6 +++++- src/hamcrest/__init__.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) 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"