Fixed changelog

This commit is contained in:
Helder Eijs 2025-06-21 16:41:33 +02:00
parent 2816c3e3d6
commit 2c3a8905a7
2 changed files with 8 additions and 1 deletions

View file

@ -1,6 +1,13 @@
Changelog Changelog
========= =========
3.24.0 (under development)
++++++++++++++++++++++++++
Resolved issues
---------------
* GH#875: Fixed the Object Identifiers (OID) for BLAKE2.
3.23.0 (17 May 2025) 3.23.0 (17 May 2025)
++++++++++++++++++++++++++ ++++++++++++++++++++++++++

View file

@ -1,6 +1,6 @@
__all__ = ['Cipher', 'Hash', 'Protocol', 'PublicKey', 'Util', 'Signature', __all__ = ['Cipher', 'Hash', 'Protocol', 'PublicKey', 'Util', 'Signature',
'IO', 'Math'] 'IO', 'Math']
version_info = (3, 23, '0') version_info = (3, 24, '0b0')
__version__ = ".".join([str(x) for x in version_info]) __version__ = ".".join([str(x) for x in version_info])