From d91fa4c3f9b95c14db6cd07b7b458da5545a8768 Mon Sep 17 00:00:00 2001 From: Matthias Valvekens Date: Mon, 25 Mar 2024 06:59:39 +0100 Subject: [PATCH] 0.23.2 release --- docs/changelog.rst | 21 +++++++++++++++++++++ pyhanko/version.py | 4 ++-- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 4754a427..01fd1ab7 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,6 +3,27 @@ Release history *************** +.. _release-0.23.2: + +*Release date:* 2024-03-25 + + +Dependency changes +------------------ + + * Upgraded ``certomancer`` dependency for tests to ``0.12.0``. + * Upgraded ``pytest-asyncio`` tot ``0.23.6``. + + +Bugs fixed +---------- + + * Fix handling of "OAEP preferred" flag when encrypting documents with a public key. + * Fix endianness issue when reading & writing permissions in documents encrypted with a public key. + * Tolerate **AcroForm**s without a **Fields** entry. + * Increase resilience against issues with ``oscrypto``. + + .. _release-0.23.1: *Release date:* 2024-03-14 diff --git a/pyhanko/version.py b/pyhanko/version.py index aab5a1ff..fcd9775f 100644 --- a/pyhanko/version.py +++ b/pyhanko/version.py @@ -1,2 +1,2 @@ -__version__ = '0.23.2.dev1' -__version_info__ = (0, 23, 2, 'dev1') +__version__ = '0.23.2' +__version_info__ = (0, 23, 2)