From: Bob Halley Date: Thu, 24 Mar 2011 17:33:55 +0000 (+0000) Subject: prep 1.9.4 X-Git-Tag: v1.9.4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=800640f0b70fa988c00f891ea8cb5972dd87a8fa;p=thirdparty%2Fdnspython.git prep 1.9.4 --- diff --git a/ChangeLog b/ChangeLog index 97c09dab..4a33e8be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2011-03-24 Bob Halley + + * dns/rdata.py (Rdata._wire_cmp): We need to specify no + compression and an origin to _wire_cmp() in case names in the + rdata are relative names. + + * dns/rdtypes/ANY/SIG.py (SIG._cmp): Add missing 'import struct'. + Thanks to Arfrever Frehtes Taifersar Arahesis for reporting the + problem. + 2011-03-24 Bob Halley * (Version 1.9.3 released) diff --git a/dns/version.py b/dns/version.py index 46799a77..1249c04a 100644 --- a/dns/version.py +++ b/dns/version.py @@ -17,7 +17,7 @@ MAJOR = 1 MINOR = 9 -MICRO = 3 +MICRO = 4 RELEASELEVEL = 0x0f SERIAL = 0 diff --git a/setup.py b/setup.py index f84711f7..e9119b75 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ import sys from distutils.core import setup -version = '1.9.3' +version = '1.9.4' kwargs = { 'name' : 'dnspython',