Skip to content

Commit e16bc22

Browse files
committed
Update to Changelog
1 parent d97a099 commit e16bc22

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

Changelog.rst

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
Changelog
22
=========
33

4-
3.6.5 (xx xxxxx 2018)
5-
+++++++++++++++++++++
4+
3.6.5 (12 August 2018)
5+
++++++++++++++++++++++
66

77
Resolved issues
88
---------------
99

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

1317
3.6.4 (10 July 2018)
1418
+++++++++++++++++++++

lib/Crypto/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__all__ = ['Cipher', 'Hash', 'Protocol', 'PublicKey', 'Util', 'Signature',
22
'IO', 'Math']
33

4-
version_info = (3, 6, 5, "a0")
4+
version_info = (3, 6, 5)
55

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

0 commit comments

Comments
 (0)