diff --git a/docs/changelog.rst b/docs/changelog.rst index 7e69261e..5fb7e17f 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,24 @@ Release history *************** +.. _release-0.25.2: + +*Release date:* 2024-11-11 + + +Dependency changes +------------------ + + * Bump minimal ``cryptography`` version to ``43.0.3``. + * Update ``uharfbuzz`` upper bound to ``0.42.0``. + * Add Python 3.13 to the package metadata & include it in CI. + * Some test dependencies bumped. + +Bugs fixed +---------- + + * Properly propagate ``strict=False`` in post-signing instructions. + .. _release-0.25.1: diff --git a/pyhanko/version.py b/pyhanko/version.py index daec0797..dc398962 100644 --- a/pyhanko/version.py +++ b/pyhanko/version.py @@ -1,2 +1,2 @@ -__version__ = '0.25.2.dev1' -__version_info__ = (0, 25, 2, 'dev1') +__version__ = '0.25.2' +__version_info__ = (0, 25, 2)