From c6bd655ed1c60480fc23c7014cd33c4f8f412514 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Mon, 1 Sep 2014 06:03:07 -0700 Subject: [PATCH] Prep 1.12.0 --- ChangeLog | 5 ++++- README | 40 +++++++++++++++++++++++++++++++++++++++- dns/version.py | 4 ++-- setup.py | 2 +- 4 files changed, 46 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1272e8b4..b28613fc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,12 @@ -2014-09-01 Bob Halley +2014-09-01 Bob Halley * (Version 1.12.0 released) 2014-08-31 Bob Halley + * The test system can now run the tests without requiring dnspython + to be installed. + * When reading from a masterfile, if the first content line started with leading whitespace, we raised an ugly exception instead of doing the right thing, namely using the zone origin as the name. diff --git a/README b/README index f4bd3912..2ea6151c 100644 --- a/README +++ b/README @@ -22,7 +22,45 @@ development by continuing to employ the author :). ABOUT THIS RELEASE -This is dnspython3 1.11.1 +This is dnspython3 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. + +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. + + dns.inet.is_multicast had python3 port issues. New since 1.11.0: diff --git a/dns/version.py b/dns/version.py index c3d305e2..c3822795 100644 --- a/dns/version.py +++ b/dns/version.py @@ -16,8 +16,8 @@ """dnspython release version information.""" MAJOR = 1 -MINOR = 11 -MICRO = 1 +MINOR = 12 +MICRO = 0 RELEASELEVEL = 0x0f SERIAL = 0 diff --git a/setup.py b/setup.py index 03bf2ca6..23c2126c 100755 --- 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' : 'dnspython3', -- 2.47.3