From 91036ca6899279c693d769d5cc1f5e298428bbef Mon Sep 17 00:00:00 2001 From: Simon Brunning Date: Wed, 26 Feb 2020 13:44:42 +0000 Subject: [PATCH] Update change log for 2.0.1, bump version number, and update copyright year. --- CHANGES.txt | 4 ++++ LICENSE.txt | 2 +- doc/conf.py | 2 +- src/hamcrest/__init__.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index cac617a1..61268b7a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,7 @@ +=== Version 2.0.1 == + +* Make hamcrest package PEP 561 compatible, i.e. supply type hints for external use. + === Version 2.0.0 == Drop formal support for 2.x diff --git a/LICENSE.txt b/LICENSE.txt index 0bea089e..fe93ce18 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ BSD License -Copyright 2011 hamcrest.org +Copyright 2020 hamcrest.org All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/doc/conf.py b/doc/conf.py index 86098571..e9266d43 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -48,7 +48,7 @@ # General information about the project. project = six.u('PyHamcrest') -copyright = six.u('2011, hamcrest.org') +copyright = six.u('2020, hamcrest.org') # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/src/hamcrest/__init__.py b/src/hamcrest/__init__.py index aee100ef..bf9eea4c 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.0" +__version__ = "2.0.1" __author__ = "Chris Rose" __copyright__ = "Copyright 2020 hamcrest.org" __license__ = "BSD, see License.txt"