summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2018-04-29 20:48:02 +0200
committerMatěj Cepl <mcepl@cepl.eu>2018-04-29 20:48:02 +0200
commit926e263948ecca972e59746016b08a4360ea77a0 (patch)
tree527f2c398e901483df1954f11142f69edebe5777
parent671c4656e96aa810d4dd580a5674c833dfd31286 (diff)
downloadm2crypto-926e263948ecca972e59746016b08a4360ea77a0.tar.gz
Fix packaging.0.30.1
Fixes #212
-rw-r--r--CHANGES4
-rw-r--r--M2Crypto/__init__.py2
-rw-r--r--MANIFEST.in2
-rw-r--r--setup.py2
4 files changed, 7 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index 6e7b747..81c3eb8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,7 @@
+0.30.1 - 2018-04-29
+-------------------
+- Fix packaging (missed packaging testing file)
+
0.30.0 - 2018-04-25
-------------------
- Various small typos (Windows builds, Fix SSL.Connection.__del__)
diff --git a/M2Crypto/__init__.py b/M2Crypto/__init__.py
index 65071c8..e058516 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.30.0'
+__version__ = '0.30.1'
version = __version__ # type: str
version_info = StrictVersion(__version__).version
diff --git a/MANIFEST.in b/MANIFEST.in
index 21728be..1eb138a 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,7 +1,7 @@
include SWIG/*.i
include SWIG/*.h
include SWIG/*.def
-recursive-include tests *.py *.pem *.der *.b64 README *.pgp *.dat *.p7* *.crt
+recursive-include tests *.py *.pem *.der *.b64 README *.pgp *.dat *.p7* *.crt *.txt
recursive-include doc *
recursive-include contrib *
include INSTALL.rst
diff --git a/setup.py b/setup.py
index 00700ff..c7291f4 100644
--- a/setup.py
+++ b/setup.py
@@ -357,7 +357,7 @@ setuptools.setup(
license='MIT',
platforms=['any'],
author='Ng Pheng Siong',
- author_email='ngps at sandbox rulemaker net',
+ author_email='ngps@sandbox.rulemaker.net',
maintainer='Matej Cepl',
maintainer_email='mcepl@cepl.eu',
url='https://gitlab.com/m2crypto/m2crypto',