From 3278edd0e99d1a45231de4b4b2a77b50963431e9 Mon Sep 17 00:00:00 2001 From: Helder Eijs Date: Wed, 27 Dec 2023 22:56:16 +0100 Subject: [PATCH] Update changelog and version --- Changelog.rst | 4 ++-- lib/Crypto/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Changelog.rst b/Changelog.rst index cdc5ae31..98710eb8 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -1,13 +1,13 @@ Changelog ========= -Under development +3.19.1 (28 December 2023) ++++++++++++++++++++++++++ Resolved issues --------------- * Fixed a side-channel leakage with OAEP decryption that could be - exploited for a Manger's attack. Thanks to Hubert Kario. + exploited to carry out a Manger attack. Thanks to Hubert Kario. 3.19.0 (16 September 2023) ++++++++++++++++++++++++++ diff --git a/lib/Crypto/__init__.py b/lib/Crypto/__init__.py index 128a7e11..ff0d38a8 100644 --- a/lib/Crypto/__init__.py +++ b/lib/Crypto/__init__.py @@ -1,6 +1,6 @@ __all__ = ['Cipher', 'Hash', 'Protocol', 'PublicKey', 'Util', 'Signature', 'IO', 'Math'] -version_info = (3, 20, '0b0') +version_info = (3, 19, '1') __version__ = ".".join([str(x) for x in version_info])