Release 0.5.1

This commit is contained in:
Stuart D. Gathman
2012-02-03 17:23:59 -05:00
parent 644916a653
commit b732e518e4
4 changed files with 12 additions and 4 deletions
+5
View File
@@ -1,10 +1,15 @@
2012-02-03 Version 0.5.1 2012-02-03 Version 0.5.1
- Apply performance patch from <https://launchpad.net/bugs/901591> - Apply performance patch from <https://launchpad.net/bugs/901591>
- save parsed signatures in DKIM object
- do not require DNS/dnspython for signing
2011-10-26 Version 0.5 2011-10-26 Version 0.5
- Add test case and fix for <https://launchpad.net/bugs/644046> - Add test case and fix for <https://launchpad.net/bugs/644046>
- Add test case and fix for <https://launchpad.net/bugs/737311> - Add test case and fix for <https://launchpad.net/bugs/737311>
- Fix dkim.fold() - Fix dkim.fold()
- raise KeyFormatError when missing required key parts in DNS
- do not sign all headers by default
- option to verify signatures other than first
2011-06-16 Version 0.4.2 2011-06-16 Version 0.4.2
- Fix use of dns namespace so dnspython works - Fix use of dns namespace so dnspython works
-2
View File
@@ -1,5 +1,3 @@
Handle multiple DKIM-Signature header lines, ie. more than just the first one.
Better debug logging output. Better debug logging output.
General code cleanup. General code cleanup.
+6 -1
View File
@@ -3,7 +3,7 @@
Summary: Python DKIM library Summary: Python DKIM library
Name: %{pythonbase}-pydkim Name: %{pythonbase}-pydkim
Version: 0.5 Version: 0.5.1
Release: 1 Release: 1
Source0: http://hewgill.com/pydkim/pydkim-%{version}.tar.bz2 Source0: http://hewgill.com/pydkim/pydkim-%{version}.tar.bz2
License: BSD-like License: BSD-like
@@ -44,6 +44,11 @@ rm -rf $RPM_BUILD_ROOT
/usr/lib/%{__python}/site-packages/dkim/__main__.pyo /usr/lib/%{__python}/site-packages/dkim/__main__.pyo
%changelog %changelog
* Fri Feb 03 2012 Stuart Gathman <stuart@bmsi.com> 0.5.1-1
- performance patch from https://launchpad.net/~petri Petri Lehtinen
- save parsed signatures in DKIM object
- do not require DNS/dnspython for signing
* Wed Oct 26 2011 Stuart Gathman <stuart@bmsi.com> 0.5-1 * Wed Oct 26 2011 Stuart Gathman <stuart@bmsi.com> 0.5-1
- raise KeyFormatError when missing required key parts in DNS - raise KeyFormatError when missing required key parts in DNS
- test fail on extra headers in message - test fail on extra headers in message
+1 -1
View File
@@ -24,7 +24,7 @@
from distutils.core import setup from distutils.core import setup
import os import os
version = "0.5" version = "0.5.1"
setup( setup(
name = "pydkim", name = "pydkim",