From e9f2a07fadb67ac9de48305b5888256fcaddc01a Mon Sep 17 00:00:00 2001 From: Matthias Valvekens Date: Thu, 7 Mar 2024 23:03:31 +0100 Subject: [PATCH] 0.22.0 release --- docs/changelog.rst | 36 ++++++++++++++++++++++++++++++++++++ pyhanko/version.py | 4 ++-- 2 files changed, 38 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 94fba200..1f8f6fc7 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,6 +3,42 @@ Release history *************** +.. _release-0.22.0: + +*Release date:* 2024-03-07 + + +Dependency changes +------------------ + + * Relax upper bounds on ``xsdata`` and ``uharfbuzz``. + * ``cryptography` to ``42.0.1`` + * Get rid of ``pytest-runner`` + + +New features and enhancements +----------------------------- + +Signing +^^^^^^^ + + * Relax processing of PKCS#11 options, setting better defaults so + users have to write less config to select their key/certificate. + (see PR #296 ) + + +CLI +^^^ + + * Add ``timestamp`` command to CLI to add a document timestamp without + performing any PAdES validation. + + +Bugs fixed +---------- + + * Gracefully handle lack of ``/Type`` entry in signature objects vailidation. + .. _release-0.21.0: *Release date:* 2023-11-26 diff --git a/pyhanko/version.py b/pyhanko/version.py index 1a4f5f45..d7da7b1d 100644 --- a/pyhanko/version.py +++ b/pyhanko/version.py @@ -1,2 +1,2 @@ -__version__ = '0.21.1-dev1' -__version_info__ = (0, 21, 1, 'dev1') +__version__ = '0.22.0' +__version_info__ = (0, 22, 0)