diff options
| -rw-r--r-- | ChangeLog | 10 | ||||
| -rw-r--r-- | dns/version.py | 2 | ||||
| -rwxr-xr-x | setup.py | 2 |
3 files changed, 12 insertions, 2 deletions
@@ -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 @@ -18,7 +18,7 @@ import sys from distutils.core import setup -version = '1.9.3' +version = '1.9.4' kwargs = { 'name' : 'dnspython', |
