summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog10
-rw-r--r--dns/version.py2
-rwxr-xr-xsetup.py2
3 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 97c09da..4a33e8b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
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)
2011-03-22 Bob Halley <halley@dnspython.org>
diff --git a/dns/version.py b/dns/version.py
index 46799a7..1249c04 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 f84711f..e9119b7 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',