diff options
| author | Bob Halley <halley@nominum.com> | 2011-03-24 17:33:55 +0000 |
|---|---|---|
| committer | Bob Halley <halley@nominum.com> | 2011-03-24 17:33:55 +0000 |
| commit | 800640f0b70fa988c00f891ea8cb5972dd87a8fa (patch) | |
| tree | 1875170eea72a31bc006c77299aa2158958899d7 | |
| parent | d9fa23dd46b973b5f758ea19d6d16ab085d4d8e2 (diff) | |
| download | dnspython-1.9.4.tar.gz | |
prep 1.9.4v1.9.4+readmev1.9.4
| -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', |
