diff --git a/ChangeLog b/ChangeLog index c8727d1..733cfb4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,12 +1,15 @@ -Not yet released - - when producing Relaxed mode signatures, the partial DKIM-Signature - header must be canonicalized before hashing (Martin Pool) - +2011-06-15 Version 0.4.1 + - Fix python3 compatibility bugs + - Correct Changelog and release versions 2011-06-14 Version 0.4 - new API: class DKIM to retrieve domain and other info after verify + - Add support for python3 - pydns driver tested and fixed + - when producing Relaxed mode signatures, the partial DKIM-Signature + header must be canonicalized before hashing (Martin Pool) + - other bug fixes 2008-06-25 Version 0.3 diff --git a/PKG-INFO b/PKG-INFO index c1e2063..04b2358 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: pydkim -Version: 0.4 +Version: 0.4.1 Summary: DKIM (DomainKeys Identified Mail) Home-page: http://hewgill.com/pydkim/ Author: Greg Hewgill diff --git a/README b/README index 9ce51f9..ff1f859 100644 --- a/README +++ b/README @@ -8,7 +8,7 @@ signing and verification. VERSION -This is pydkim 0.4. +This is pydkim 0.4.1. REQUIREMENTS diff --git a/setup.py b/setup.py index b2bfbde..d5455bd 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ from distutils.core import setup import os -version = "0.4" +version = "0.4.1" setup( name = "pydkim",