Skip to content

Commit

Permalink
Prep 1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rthalley committed Sep 1, 2014
1 parent c786b02 commit e1369c6
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 6 deletions.
7 changes: 6 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>

* The test system can now run the tests without requiring dnspython
to be installed.

2014-07-24 Bob Halley <[email protected]>

* The 64-bit version of Python on Windows has sys.maxint set to
Expand Down
42 changes: 40 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -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'.
Expand Down
4 changes: 2 additions & 2 deletions dns/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"""dnspython release version information."""

MAJOR = 1
MINOR = 11
MICRO = 1
MINOR = 12
MICRO = 0
RELEASELEVEL = 0x0f
SERIAL = 0

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import sys
from distutils.core import setup

version = '1.11.1'
version = '1.12.0'

kwargs = {
'name' : 'dnspython',
Expand Down

0 comments on commit e1369c6

Please sign in to comment.