summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2016-05-10 10:02:12 -0700
committerBob Halley <halley@dnspython.org>2016-05-10 10:02:12 -0700
commitdf0204378bd2a181be4772836727c0edcef57a7c (patch)
treef975ec8b4bad9e768704bee411e339daf3734d34
parent2e2557c31c37c3266dcd812f50b2feb390e0714b (diff)
downloaddnspython-1.13.0.tar.gz
Doc prep for 1.13v1.13.0
-rw-r--r--ChangeLog30
-rw-r--r--README.md26
2 files changed, 51 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 32ddb21..177a34c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,34 @@
+2016-05-10 Bob Halley <halley@dnspython.org>
+
+ * (Version 1.13.0 released)
+
+2016-05-10 Bob Halley <halley@dnspython.org>
+
+ * Dropped support for Python 2.4 and 2.5.
+
+ * Zone origin can be specified as a string.
+
+ * Support string representation for all DNSExceptions.
+
+ * Use setuptools not distutils
+
+ * A number of Unicode name bug fixes.
+
+ * Added support for CAA, CDS, CDNSKEY, EUI48, EUI64, and URI RR
+ types.
+
+ * Names now support the pickle protocol.
+
+ * NameDicts now keep the max-depth value correct, and update
+ properly.
+
+ * resolv.conf processing rejects lines with too few tokens.
+
+ * Ports can be specified per-nameserver in the stub resolver.
+
2016-05-03 Arthur Gautier
- * Single source support for python 2 and 3
+ * Single source support for python 2.6+ and 3.3+
2014-09-04 Bob Halley <halley@dnspython.org>
diff --git a/README.md b/README.md
index 71eddfd..bb5b5e3 100644
--- a/README.md
+++ b/README.md
@@ -31,17 +31,35 @@ This is dnspython 1.13.0
New since 1.12.0:
- Single source support for python 2 and python 3. Thank
- you so much to Arthur Gautier for taking on this
+ Dnspython now uses a single source for Python 2 and Python 3,
+ eliminating the painful merging between the Python 2 and Python 3
+ branches. Thank you so much to Arthur Gautier for taking on this
challenge and making it work! It was a big job!
Support for Python older than 2.6 dropped.
- XXX TBD XXX
+ Support for Python older than 3.3 dropped.
+
+ Zone origin can be specified as a string.
+
+ A rich string representation for all DNSExceptions.
+
+ setuptools has replaced distutils
+
+ Added support for CAA, CDS, CDNSKEY, EUI48, EUI64, and URI RR
+ types.
+
+ Names now support the pickle protocol.
+
+ Ports can be specified per-nameserver in the stub resolver.
Bugs fixed since 1.12.0:
- XXX TBD XXX
+ A number of Unicode name bugs have been fixed.
+
+ resolv.conf processing now rejects lines with too few tokens.
+
+ NameDicts now keep the max-depth value correct, and update properly.
New since 1.11.1: