Skip to content

Commit

Permalink
Bump version and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Legrandin committed Jan 9, 2024
1 parent ebfef94 commit b6ab946
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Changelog.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

Under Development
3.20.0 (9 January 2024)
++++++++++++++++++++++++++

New features
Expand All @@ -16,6 +16,11 @@ New features
* Export of RSA keys accepts the ``prot_params`` dictionary
as parameter to control the number of iterations for PBKDF2
and scrypt.
* C unit tests also run on non-x86 architectures.

Resolved issues
---------------
* GH#787: Fixed autodetect logic for GCC 14 in combination with LTO.

3.19.1 (28 December 2023)
++++++++++++++++++++++++++
Expand Down
2 changes: 1 addition & 1 deletion lib/Crypto/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__all__ = ['Cipher', 'Hash', 'Protocol', 'PublicKey', 'Util', 'Signature',
'IO', 'Math']

version_info = (3, 20, '0b0')
version_info = (3, 20, '0')

__version__ = ".".join([str(x) for x in version_info])

0 comments on commit b6ab946

Please sign in to comment.