From d298477f700f6dcac1de709abea5598833a4f8d1 Mon Sep 17 00:00:00 2001 From: Helder Eijs Date: Fri, 15 Sep 2023 17:12:30 +0200 Subject: [PATCH] Bump 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 f196b6c8..057a5544 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -1,7 +1,7 @@ Changelog ========= -3.19.0 (under development) +3.19.0 (16 September 2023) ++++++++++++++++++++++++++ New features @@ -9,7 +9,7 @@ New features * The ``update()`` methods of TupleHash128 and TupleHash256 objects can now hash multiple items (byte strings) at once. Thanks to Sylvain Pelissier. -* Added support for ECDH, with ``Crypto.Protocol.dh``. +* Added support for ECDH, with ``Crypto.Protocol.DH``. Resolved issues --------------- diff --git a/lib/Crypto/__init__.py b/lib/Crypto/__init__.py index 20c331e7..773db588 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, 19, '0b1') +version_info = (3, 19, '0') __version__ = ".".join([str(x) for x in version_info])