From: Bob Halley Date: Mon, 2 Sep 2013 19:00:57 +0000 (-0700) Subject: prep 1.11.1 X-Git-Tag: v1.11.1-py3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8bddf55ddc61ca813f8e1faa241ec7ee786012be;p=thirdparty%2Fdnspython.git prep 1.11.1 --- diff --git a/ChangeLog b/ChangeLog index 31544869..a66722ca 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,41 @@ +2013-09-02 Bob Halley + + * (Version 1.11.1 released) + +2013-09-01 Bob Halley + + * dns/tsigkeyring.py (to_text): we want keyname.to_text(), not + dns.name.to_text(keyname). Thangs to wangwang for the fix. + 2013-08-26 Bob Halley * dns/tsig.py (sign): multi-message TSIGs were broken for - algorithms other than HMAC-MD5 because we weren't passing the - right digest module to the HMAC code. Thanks to salzmdan for - reporting the bug. + algorithms other than HMAC-MD5 because we weren't passing the + right digest module to the HMAC code. Thanks to salzmdan for + reporting the bug. + +2013-08-13 Bob Halley + + * APL RR trailing zero suppression didn't work due to insufficient + python 3 porting. + +2013-08-09 Bob Halley + + * dns/dnssec.py (_find_candidate_keys): we tried to extract the + key from the wrong variable name. Thanks to Andrei Fokau for the + fix. + +2013-07-08 Bob Halley + + * dns/resolver.py: we want 'self.retry_servfail' not just + retry_servfail. Reported by many, thanks! Thanks to + Jeffrey C. Ollie for the fix. + +2013-07-08 Bob Halley + + * tests/grange.py: fix tests to use older-style print formatting + for backwards compatibility with python 2.4. Thanks to + Jeffrey C. Ollie for the fix. 2013-07-01 Bob Halley diff --git a/README b/README index 4b54adf6..f4bd3912 100644 --- a/README +++ b/README @@ -22,7 +22,31 @@ development by continuing to employ the author :). ABOUT THIS RELEASE -This is dnspython3 1.11.0 +This is dnspython3 1.11.1 + +New since 1.11.0: + + Nothing + +Bugs fixed since 1.11.1: + + dns.resolver.Resolver erroneously referred to 'retry_servfail' + instead of 'self.retry_servfail'. + + dns.tsigkeyring.to_text() would fail trying to convert the + keyname to text. + + Multi-message TSIGs were broken for algorithms other than + HMAC-MD5 because we weren't passing the right digest module to + the HMAC code. + + dns.dnssec._find_candidate_keys() tried to extract the key + from the wrong variable name. + + $GENERATE tests were not backward compatible with python 2.4. + + APL RR trailing zero suppression didn't work due to insufficient + python 3 porting. New since 1.10.0: diff --git a/dns/version.py b/dns/version.py index 7f393bec..c3d305e2 100644 --- a/dns/version.py +++ b/dns/version.py @@ -17,7 +17,7 @@ MAJOR = 1 MINOR = 11 -MICRO = 0 +MICRO = 1 RELEASELEVEL = 0x0f SERIAL = 0 diff --git a/setup.py b/setup.py index f51c1f40..03bf2ca6 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ import sys from distutils.core import setup -version = '1.11.0' +version = '1.11.1' kwargs = { 'name' : 'dnspython3',