]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
prep 1.11.1 v1.11.1
authorBob Halley <halley@dnspython.org>
Mon, 2 Sep 2013 19:00:41 +0000 (12:00 -0700)
committerBob Halley <halley@dnspython.org>
Mon, 2 Sep 2013 19:00:41 +0000 (12:00 -0700)
ChangeLog
README
dns/version.py
setup.py

index 4cfcf8f959851760d1b7f61f19575adfe8d40b85..5537eb9a9c7430ef522c9e81d2d0fb20d0a07b86 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,36 @@
+2013-09-02  Bob Halley  <halley@dnspython.org>
+
+       * (Version 1.11.1 released)
+
+2013-09-01  Bob Halley  <halley@dnspython.org>
+
+       * 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  <halley@dnspython.org>
 
        * 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-09  Bob Halley  <halley@dnspython.org>
+
+       * 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  <halley@dnspython.org>
+
+       * 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  <halley@dnspython.org>
+
+       * 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  <halley@dnspython.org>
 
diff --git a/README b/README
index f74686dcedf58f578cd1b045d0f6563d372f1230..53518f42a835841da51a758d4e4819f4fafd7613 100644 (file)
--- a/README
+++ b/README
@@ -22,7 +22,28 @@ development by continuing to employ the author :).
 
 ABOUT THIS RELEASE
 
-This is dnspython 1.11.0
+This is dnspython 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.
 
 New since 1.10.0:
     
index 7f393bec4d9266741003af08de4c8336c3020d32..c3d305e2e106a2a2d3be7f441293904641c54fa6 100644 (file)
@@ -17,7 +17,7 @@
 
 MAJOR = 1
 MINOR = 11
-MICRO = 0
+MICRO = 1
 RELEASELEVEL = 0x0f
 SERIAL = 0
 
index a6e45a28daf5199cf986383a73876b34777230b8..d431c3eceb5a3acd6419370130726b7d624f55ce 100755 (executable)
--- 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' : 'dnspython',