summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2018-02-23 17:31:47 +0100
committerMatěj Cepl <mcepl@cepl.eu>2018-02-23 22:12:33 +0100
commite548fdb60e64ad4cde88403d026354675326ad16 (patch)
tree9f1d1738c40f68ade0d392252d156935ce5975c8
parente6dfe167cff892ef0272996db885a8ec89582e9e (diff)
downloadm2crypto-e548fdb60e64ad4cde88403d026354675326ad16.tar.gz
Add a record to ChangeLog.0.29.0
-rw-r--r--CHANGES6
-rw-r--r--M2Crypto/__init__.py2
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 6289e35..9605aba 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,9 @@
+0.29.0 - 2018-02-23
+-------------------
+- Fix building on Windows (all tests fix on Win32 and Win64 on all
+ supported combinations of versions of OpenSSL and Python)
+- Fixes of some small bugs
+
0.28.0 - 2018-02-08
-------------------
- Mainly port to Python 3 (supporting 2.6, 2.7, 3.3, 3.4, 3.5, 3.6)
diff --git a/M2Crypto/__init__.py b/M2Crypto/__init__.py
index 88627d0..5fd4862 100644
--- a/M2Crypto/__init__.py
+++ b/M2Crypto/__init__.py
@@ -19,7 +19,7 @@ Copyright 2008-2011 Heikki Toivonen. All rights reserved.
"""
# noqa
from distutils.version import StrictVersion
-__version__ = '0.28.2'
+__version__ = '0.29.0'
version = __version__ # type: str
version_info = StrictVersion(__version__).version