diff --git a/docs/changelog.rst b/docs/changelog.rst index 1bb780ea..27d062a9 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,24 @@ Release history *************** +.. _release-0.25.0: + +*Release date:* 2024-05-06 + + +New features and enhancements +----------------------------- + + +Encryption +^^^^^^^^^^ + + * Implement ISO/TS 32003 and ISO/TS 32004, to support AES-GCM streams and + MAC authentication in encrypted PDF 2.0 documents, respectively. + MACs are turned on by default when creating documents with PDF 2.0-style + encryption. + + .. _release-0.24.0: *Release date:* 2024-04-27 diff --git a/pyhanko/version.py b/pyhanko/version.py index 51e19d02..87b003ff 100644 --- a/pyhanko/version.py +++ b/pyhanko/version.py @@ -1,2 +1,2 @@ -__version__ = '0.24.1.dev1' -__version_info__ = (0, 24, 1, 'dev1') +__version__ = '0.25.0' +__version_info__ = (0, 25, 0)