Skip to content

Commit

Permalink
Update to Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Legrandin committed Aug 12, 2018
1 parent d97a099 commit e16bc22
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions Changelog.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
Changelog
=========

3.6.5 (xx xxxxx 2018)
+++++++++++++++++++++
3.6.5 (12 August 2018)
++++++++++++++++++++++

Resolved issues
---------------

* GH#188: In the Lucas probable prime test, do an exhaustive search for D values,
as opposed to trying only the first few.
* GH#187: Fixed incorrect AES encryption/decryption with AES acceleration on x86
due to gcc's optimization and strict aliasing rules.
* GH#188: More prime number candidates than necessary where discarded as composite
due to the limited way D values were searched in the Lucas test.
* Fixed ResouceWarnings and DeprecationWarnings.
* Workaround for Python 3.7.0 bug on Windows (https://bugs.python.org/issue34108).

3.6.4 (10 July 2018)
+++++++++++++++++++++
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, 6, 5, "a0")
version_info = (3, 6, 5)

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

0 comments on commit e16bc22

Please sign in to comment.