From ea050c41a0d16bdc55bab030650639d35bfa4d12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= Date: Mon, 13 Jul 2020 23:03:17 +0200 Subject: New release --- CHANGES | 35 +++++++++++++++++++++++++++++++++++ M2Crypto/__init__.py | 2 +- 2 files changed, 36 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 882a835..d2fc378 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,38 @@ +0.36.0 - 2020-07-13 +------------------- + +- wrap SocketIO in io.Buffered* for makefile +- SSL.Connection.close accepts an argument to force the socket closing + +- SSL.Connection: make the clientPostConnectionCheck an instance + attribute +- Fixed bug with usage of unexisting method getreply at SSL_Transport + +- Add appveyor builds for python 3.7 and 3.8 +- Fixed syntax warning on line 44. +- Update M2Crypto.six to 1.13.0 +- base64.decodestring() was finally removed in Python 3.8. +- wrap SocketIO in io.Buffered* for makefile +- NULL is legal argument for key and iv paramters of EVP_CipherInit(3) + +- Expose X509_V_FLAG_ALLOW_PROXY_CERTS verification flag and + X509_STORE_SET_FLAGS function +- Stop testing for 2.6 and 3.4 on Travis. Start testing 3.8 +- Extend test cert validity to 2049 +- Revert using typing module in 2.6. It is just not worthy. +- Update Debian/stable SSL as well +- Make tests pass again. +- Stop using string module, which has been deprecated. +- Tiny fixes to make pyls more happy +- CI: Rework Fedora CI configuration + +0.35.2 - 2019-06-10 +------------------- + +- tests.test_rsa: Fix typo to match for proper exception +- Expose CRLs verification flags + 0.35.1 - 2019-06-08 ------------------- diff --git a/M2Crypto/__init__.py b/M2Crypto/__init__.py index b19b2fe..f4e00a4 100644 --- a/M2Crypto/__init__.py +++ b/M2Crypto/__init__.py @@ -20,7 +20,7 @@ Copyright 2008-2011 Heikki Toivonen. All rights reserved. # noqa import sys from distutils.version import StrictVersion -__version__ = '0.35.2' +__version__ = '0.36.0' version = __version__ # type: str version_info = StrictVersion(__version__).version -- cgit v1.2.1