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])