summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES14
-rw-r--r--M2Crypto/__init__.py2
2 files changed, 15 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 9605aba..6e7b747 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,17 @@
+0.30.0 - 2018-04-25
+-------------------
+- Various small typos (Windows builds, Fix SSL.Connection.__del__)
+- The project is now Linux-distribution agnostic
+- Replace all old-style classes with the new ones (it shouldn't cause
+ any problems, but feel free to file an issue, if it does)
+- Do not by-pass a potential transfer decoding in m2urllib2
+- Update M2Crypto.six with 1.11.0 and replace our local workarounds with
+ new functions.
+- SSLv3 just removed.
+- Don't support Python 2.6 on Windows anymore. Windows users don't have
+ python as a system package, so they are usually more likely to upgrade
+ anyway.
+
0.29.0 - 2018-02-23
-------------------
- Fix building on Windows (all tests fix on Win32 and Win64 on all
diff --git a/M2Crypto/__init__.py b/M2Crypto/__init__.py
index 90295bc..65071c8 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.29.0'
+__version__ = '0.30.0'
version = __version__ # type: str
version_info = StrictVersion(__version__).version