Skip to content
Commits on Source (2)
0.21.1 - 2011-01-15
-------------------
- Distribution fix
0.21 - 2011-01-12
-----------------
- Support OpenSSL 1.0. Thanks to Miloslav Trmac for figuring out how to fix
......
......@@ -13,10 +13,10 @@ Copyright (c) 1999-2004 Ng Pheng Siong. All rights reserved.
Portions created by Open Source Applications Foundation (OSAF) are
Copyright (C) 2004-2007 OSAF. All Rights Reserved.
Copyright 2008-2010 Heikki Toivonen. All rights reserved.
Copyright 2008-2011 Heikki Toivonen. All rights reserved.
"""
version_info = (0, 21)
version_info = (0, 21, 1)
version = '.'.join([str(_v) for _v in version_info])
import __m2crypto
......
......@@ -8,7 +8,7 @@ Copyright (c) 1999-2004, Ng Pheng Siong. All rights reserved.
Portions created by Open Source Applications Foundation (OSAF) are
Copyright (C) 2004-2007 OSAF. All Rights Reserved.
Copyright 2008-2009 Heikki Toivonen. All rights reserved.
Copyright 2008-2011 Heikki Toivonen. All rights reserved.
"""
import os, sys
......@@ -134,7 +134,7 @@ m2crypto = Extension(name = 'M2Crypto.__m2crypto',
)
setup(name = 'M2Crypto',
version = '0.21',
version = '0.21.1',
description = 'M2Crypto: A Python crypto and SSL toolkit',
long_description = '''\
M2Crypto is the most complete Python wrapper for OpenSSL featuring RSA, DSA,
......