]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
bump version post-release
authorBob Halley <halley@dnspython.org>
Fri, 30 Sep 2016 18:45:52 +0000 (11:45 -0700)
committerBob Halley <halley@dnspython.org>
Fri, 30 Sep 2016 18:45:52 +0000 (11:45 -0700)
ChangeLog
dns/version.py
setup.py

index 15c356ac4060b33d02cb5acfd3d8fc3b3171caab..91351887a514f0bc00c7267024f1abd793e2aae3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2016-09-29  Bob Halley  <halley@dnspython.org>
 
+       * (Version 1.15.0 released)
+
        * IDNA 2008 support is now available if the "idna" module has been
          installed and IDNA 2008 is requested.  The default IDNA behavior
          is still IDNA 2003.  The new IDNA codec mechanism is currently
index 9e8dbb1b0ebf985b2e4a34a956294c5e41a70c2f..de0fe3815a76ec49603befd6a49d7618956dd905 100644 (file)
@@ -16,7 +16,7 @@
 """dnspython release version information."""
 
 MAJOR = 1
-MINOR = 15
+MINOR = 16
 MICRO = 0
 RELEASELEVEL = 0x0f
 SERIAL = 0
index 323a57914a5992759fcaf43bc5099839ef4bf9ae..89e2caec1387c3761b45ad1c081341dc75dafd92 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@
 import sys
 from setuptools import setup
 
-version = '1.15.0'
+version = '1.16.0'
 
 kwargs = {
     'name' : 'dnspython',