summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2013-06-30 13:43:51 -0700
committerBob Halley <halley@dnspython.org>2013-06-30 13:43:51 -0700
commit8dcdf7e47f0129f2f692d318057802a3d2eec915 (patch)
treec5196fdbed456265eb37b0ef51ae852dbf911e60
parente8ff2417c7ee4d7ffbf55e81e8309cca282937e2 (diff)
downloaddnspython-8dcdf7e47f0129f2f692d318057802a3d2eec915.tar.gz
prep 1.11
-rw-r--r--ChangeLog30
-rw-r--r--README10
-rw-r--r--dns/version.py2
-rwxr-xr-xsetup.py2
4 files changed, 41 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 472051c..2e44220 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-01 Bob Halley <halley@dnspython.org>
+
+ * (Version 1.11.0 released)
+
2013-04-28 Bob Halley <halley@dnspython.org>
* dns/name.py (Name.to_wire): Do not add items with offsets >= 2^14
@@ -11,6 +15,32 @@
field. Thanks to David Waitzman for reporting the bug and
suggesting the fix.
+2013-03-31 Bob Halley <halley@dnspython.org>
+
+ * lock caches in case they are shared
+
+ * raise YXDOMAIN if we see one
+
+ * do not print empty rdatasets
+
+ * Add contributed $GENERATE support (thanks uberj)
+
+ * Remove DNSKEY keytag uniqueness assumption (RFC 4034, section 8)
+ (thanks James Dempsey)
+
+2012-12-31 Bob Halley <halley@dnspython.org>
+
+ * Pull up fix _winreg renamed to winreg in python 3 (thanks
+ Christopher Lambacher)
+
+2012-09-25 Sean Leach
+
+ * added set_flags() method to dns.resolver.Resolver
+
+2012-09-25 Pieter Lexis
+
+ * added support for TLSA RR
+
2012-08-28 Bob Halley <halley@dnspython.org>
* dns/rdtypes/ANY/NSEC3.py (NSEC3.from_text): The NSEC3 from_text()
diff --git a/README b/README
index d372817..771dd23 100644
--- a/README
+++ b/README
@@ -22,7 +22,15 @@ development by continuing to employ the author :).
ABOUT THIS RELEASE
-This is dnspython3 1.10.0
+This is dnspython3 1.11.0
+
+New since 1.10.0:
+
+ XXX TBS XXX
+
+Bugs fixed since 1.10.0:
+
+ XXX TBS XXX
New since 1.9.4:
diff --git a/dns/version.py b/dns/version.py
index 7de430b..7f393be 100644
--- a/dns/version.py
+++ b/dns/version.py
@@ -16,7 +16,7 @@
"""dnspython release version information."""
MAJOR = 1
-MINOR = 10
+MINOR = 11
MICRO = 0
RELEASELEVEL = 0x0f
SERIAL = 0
diff --git a/setup.py b/setup.py
index 8af73ba..f51c1f4 100755
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@
import sys
from distutils.core import setup
-version = '1.10.0'
+version = '1.11.0'
kwargs = {
'name' : 'dnspython3',