prep 1.9.4 v1.9.4 v1.9.4+readme
authorBob Halley <halley@nominum.com>
Thu, 24 Mar 2011 17:33:55 +0000 (17:33 +0000)
committerBob Halley <halley@nominum.com>
Thu, 24 Mar 2011 17:33:55 +0000 (17:33 +0000)
ChangeLog
dns/version.py
setup.py

index 97c09dabf2e7ae9b311ca643e50d128f1463d6a4..4a33e8be05345f0d4a6dd177f0e4c0d41e1346b7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2011-03-24  Bob Halley  <halley@dnspython.org>
+
+       * 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  <halley@dnspython.org>
 
        * (Version 1.9.3 released)
index 46799a77d97ead5836f1de56b44349784b78ecfd..1249c04a7b8705c6f0b736e0ce5e3086e3e3fa9a 100644 (file)
@@ -17,7 +17,7 @@
 
 MAJOR = 1
 MINOR = 9
-MICRO = 3
+MICRO = 4
 RELEASELEVEL = 0x0f
 SERIAL = 0
 
index f84711f795b50792b8b911dba20e74d5def20ee7..e9119b75b8ef9a91a99662d73470c5763f674d74 100755 (executable)
--- 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',