From b732e518e470631a84299f53ea256632fbfec088 Mon Sep 17 00:00:00 2001 From: "Stuart D. Gathman" Date: Fri, 3 Feb 2012 17:23:59 -0500 Subject: [PATCH] Release 0.5.1 --- ChangeLog | 5 +++++ TODO | 2 -- packaging/pydkim.spec | 7 ++++++- setup.py | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8a3b96d..39ac711 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,10 +1,15 @@ 2012-02-03 Version 0.5.1 - Apply performance patch from + - save parsed signatures in DKIM object + - do not require DNS/dnspython for signing 2011-10-26 Version 0.5 - Add test case and fix for - Add test case and fix for - 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 - Fix use of dns namespace so dnspython works diff --git a/TODO b/TODO index 8f4bad8..c5fb701 100644 --- a/TODO +++ b/TODO @@ -1,5 +1,3 @@ -Handle multiple DKIM-Signature header lines, ie. more than just the first one. - Better debug logging output. General code cleanup. diff --git a/packaging/pydkim.spec b/packaging/pydkim.spec index 9c32ccb..5270b53 100644 --- a/packaging/pydkim.spec +++ b/packaging/pydkim.spec @@ -3,7 +3,7 @@ Summary: Python DKIM library Name: %{pythonbase}-pydkim -Version: 0.5 +Version: 0.5.1 Release: 1 Source0: http://hewgill.com/pydkim/pydkim-%{version}.tar.bz2 License: BSD-like @@ -44,6 +44,11 @@ rm -rf $RPM_BUILD_ROOT /usr/lib/%{__python}/site-packages/dkim/__main__.pyo %changelog +* Fri Feb 03 2012 Stuart Gathman 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 0.5-1 - raise KeyFormatError when missing required key parts in DNS - test fail on extra headers in message diff --git a/setup.py b/setup.py index a742a4b..c34da06 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ from distutils.core import setup import os -version = "0.5" +version = "0.5.1" setup( name = "pydkim",