]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
Prep 1.12.0 v1.12.0
authorBob Halley <halley@dnspython.org>
Mon, 1 Sep 2014 13:03:01 +0000 (06:03 -0700)
committerBob Halley <halley@dnspython.org>
Mon, 1 Sep 2014 13:03:01 +0000 (06:03 -0700)
ChangeLog
README
dns/version.py
setup.py

index c5b01917d2ea878414db46222108001bcf6b3734..39792fe7fe81bb534bc8a1ffdb79a1c6654eea21 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,12 @@
-2014-09-01  Bob Halley  <halley@nominum.com>
+2014-09-01  Bob Halley  <halley@dnspython.org>
 
        * (Version 1.12.0 released)
 
+2014-08-31  Bob Halley  <halley@dnspython.org>
+
+       * The test system can now run the tests without requiring dnspython
+         to be installed.
+
 2014-07-24  Bob Halley  <halley@dnspython.org>
 
        * The 64-bit version of Python on Windows has sys.maxint set to
diff --git a/README b/README
index 53518f42a835841da51a758d4e4819f4fafd7613..932e552af0e51332d8bee4af98f6631880d86203 100644 (file)
--- a/README
+++ b/README
@@ -22,13 +22,51 @@ development by continuing to employ the author :).
 
 ABOUT THIS RELEASE
 
-This is dnspython 1.11.1
+This is dnspython 1.12.0
+
+New since 1.11.1:
+    
+       Added dns.zone.to_text().
+
+       Added support for "options rotate" in /etc/resolv.conf.
+
+       dns.rdtypes.ANY.DNSKEY now has helpers functions to convert
+       between the numeric form of the flags and a set of
+       human-friendly strings
+
+       The reverse name of an IPv6 mapped IPv4 address is now in the
+       IPv4 reverse namespace.
+
+       The test system can now run the tests without requiring
+       dnspython to be installed.
+
+       Preliminary Elliptic Curve DNSSEC Validation (requires ecdsa module)
+
+Bugs fixed since 1.11.1:
+
+       dnspython raised an exception when reading a masterfile starting
+       with leading whitespace
+       
+       dnspython was affected by a python slicing API bug present on
+       64-bit windows.
+
+       Unicode escaping was applied at the wrong time.
+
+       RRSIG to_text() did not respect the relativize setting.
+
+       APL RRs with zero rdlength were rejected.
+
+       The tokenizer could put back an unescaped token.
+
+       Making a response to a message signed with TSIG was broken.
+
+       The IXFR state machine didn't handle long IXFR diffs.
 
 New since 1.11.0:
     
        Nothing
 
-Bugs fixed since 1.11.1:
+Bugs fixed since 1.11.0:
 
        dns.resolver.Resolver erroneously referred to 'retry_servfail'
        instead of 'self.retry_servfail'.
index c3d305e2e106a2a2d3be7f441293904641c54fa6..c3822795510f83c7dfa7e6d2f6894b0761788c1b 100644 (file)
@@ -16,8 +16,8 @@
 """dnspython release version information."""
 
 MAJOR = 1
-MINOR = 11
-MICRO = 1
+MINOR = 12
+MICRO = 0
 RELEASELEVEL = 0x0f
 SERIAL = 0
 
index d431c3eceb5a3acd6419370130726b7d624f55ce..c9d074c9f00e13cb8a6e95a8625f522b4efabb77 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@
 import sys
 from distutils.core import setup
 
-version = '1.11.1'
+version = '1.12.0'
 
 kwargs = {
     'name' : 'dnspython',