diff --git a/docs/changelog.rst b/docs/changelog.rst index 1f41c239..42278574 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,38 @@ Release history *************** + +.. _release-0.13.2: + +0.13.2 +====== + +*Release date:* 2022-07-02 + +Note +---- + +This is a patch release to address some dependency issues and bugs. + + +Dependency updates +------------------ + + * ``python-barcode`` updated and pinned to ``0.14.0``. + + +Bugs fixed +---------- + + * Fix lack of newline after XRef stream header. + * Do not write **DigestMethod** in signature reference dictionaries + (deprecated/nonfunctional entry). + * Make :func:`pyhanko.pdf_utils.writer.copy_into_new_writer` more flexible by allowing + caller-specified keyword arguments for the writer object. + * Refine settings for invisible signature fields (see :class:`pyhanko.sign.fields.InvisSigSettings`). + * Correctly read objects from object streams in encrypted documents. + + .. _release-0.13.1: 0.13.1 diff --git a/pyhanko/version.py b/pyhanko/version.py index 6defd704..6b6d3d4a 100644 --- a/pyhanko/version.py +++ b/pyhanko/version.py @@ -1,2 +1,2 @@ -__version__ = '0.13.1' -__version_info__ = (0, 13, 1) +__version__ = '0.13.2' +__version_info__ = (0, 13, 2)