]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
Prep 1.14.0 v1.14.0
authorBob Halley <halley@dnspython.org>
Fri, 27 May 2016 16:12:53 +0000 (09:12 -0700)
committerBob Halley <halley@dnspython.org>
Fri, 27 May 2016 16:13:01 +0000 (09:13 -0700)
ChangeLog
README.md
dns/version.py
setup.py

index 296ec28ffe8fea3b9e002fe625395dc392727049..67688803ac784626a084e6646d03e1338233e64a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,22 @@
+2016-05-27  Bob Halley  <halley@dnspython.org>
+
+       * (Version 1.14.0 released)
+
+       * Add CSYNC RR support
+
+       * Fix bug in LOC which destroyed N/S and E/W distinctions within
+         a degree of the equator or prime merdian respectively.
+
+       * Misc. fixes to deal with fallout from the Python 2 & 3 merge.
+         [issue #156], [issue #157], [issue #158], [issue #159],
+         [issue #160].
+
+       * Running with python optimization on caused issues when
+         stripped docstrings were referenced. [issue #154]
+
+       * dns.zone.from_text() erroneously required the zone to be provided.
+         [issue #153]
+
 2016-05-13  Bob Halley  <halley@dnspython.org>
 
        * dns/message.py (make_query): Setting any value which implies
index 7e21d760344f53e0631bd41cd791a747a43dbeb5..99b92cbe6231020bb96471d14cbc644862dedf2d 100644 (file)
--- a/README.md
+++ b/README.md
@@ -27,7 +27,32 @@ development by continuing to employ the author :).
 
 ## ABOUT THIS RELEASE
 
-This is dnspython 1.13.0
+This is dnspython 1.14.0
+
+New since 1.13.0:
+
+       CSYNC RRs are now supported.
+
+       dns/message.py (make_query): Setting any value which implies
+       EDNS will turn on EDNS if 'use_edns' has not been specified.
+
+Bugs fixed since 1.13.0:
+
+       TSIG signature algorithm setting was broken by the Python 2
+       and Python 3 code line merge.
+         
+       A bug in the LOC RR destroyed N/S and E/W distinctions within
+       a degree of the equator or prime merdian respectively.
+
+       Misc. fixes to deal with fallout from the Python 2 & 3 merge.
+       [issue #156], [issue #157], [issue #158], [issue #159],
+       [issue #160].
+
+       Running with python optimization on caused issues when
+       stripped docstrings were referenced. [issue #154]
+
+       dns.zone.from_text() erroneously required the zone to be provided.
+       [issue #153]
 
 New since 1.12.0:
 
index 94ab87fa5f3f237739640b071d10d9a7078acd0d..3d97f6967fae0740b91be57c18db8a8fcd80d1b6 100644 (file)
@@ -16,7 +16,7 @@
 """dnspython release version information."""
 
 MAJOR = 1
-MINOR = 13
+MINOR = 14
 MICRO = 0
 RELEASELEVEL = 0x0f
 SERIAL = 0
index 67287c4335065a9470073b51526546e013b2b3b5..08f7bdc7c8319c2f2ae61804b07920eb961efaf4 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@
 import sys
 from setuptools import setup
 
-version = '1.13.0'
+version = '1.14.0'
 
 kwargs = {
     'name' : 'dnspython',