diff --git a/docs/changelog.rst b/docs/changelog.rst index 369bf863..ec14f8bb 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,6 +3,27 @@ Release history *************** +.. _release-0.20.1: + +0.20.1 +====== + +*Release date:* 2023-09-17 + +Dependency changes +------------------ + + * Upgrade ``pyhanko-certvalidator`` to ``0.24.x`` + + +Miscellaneous +------------- + + * Tolerate missing ``D:`` in date strings (see PR #296 ). + * Various minor documentation improvements. + * Release workflow dependency bumps and minor improvements. + + .. _release-0.20.0: 0.20.0 diff --git a/pyhanko/version.py b/pyhanko/version.py index 195e7467..4e205463 100644 --- a/pyhanko/version.py +++ b/pyhanko/version.py @@ -1,2 +1,2 @@ -__version__ = '0.20.1-dev1' -__version_info__ = (0, 20, 1, 'dev1') +__version__ = '0.20.1' +__version_info__ = (0, 20, 1)