summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES10
-rw-r--r--M2Crypto/__init__.py2
2 files changed, 11 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index bd4afee..075a7a9 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,13 @@
+0.33.0 - 2019-04-26
+-------------------
+
+- eb4525c - Stop pretending to support Python 3.4. <Matěj Cepl>
+- 6a89548 - Fix use of urlunsplit (25 hours ago) <Andreas Schwab>
+- 0a5a356 - tests/test_ssl: use -ciphercuites for TLS1.3 cipher in
+ openssl1.1 <Sebastian Andrzej Siewior>
+- 8a0a3e3 - There are apparently multiword CPP variables. Taking that
+ into account. <Matěj Cepl>
+
0.32.0 - 2019-03-04
-------------------
diff --git a/M2Crypto/__init__.py b/M2Crypto/__init__.py
index 01d3643..67e2b10 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.32.0'
+__version__ = '0.33.0'
version = __version__ # type: str
version_info = StrictVersion(__version__).version