From: Bob Halley Date: Fri, 30 Sep 2016 18:45:52 +0000 (-0700) Subject: bump version post-release X-Git-Tag: v1.16.0~140 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dd265fc9d54af18e54e82503c7b51929d45f30b6;p=thirdparty%2Fdnspython.git bump version post-release --- diff --git a/ChangeLog b/ChangeLog index 15c356ac..91351887 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2016-09-29 Bob Halley + * (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 diff --git a/dns/version.py b/dns/version.py index 9e8dbb1b..de0fe381 100644 --- a/dns/version.py +++ b/dns/version.py @@ -16,7 +16,7 @@ """dnspython release version information.""" MAJOR = 1 -MINOR = 15 +MINOR = 16 MICRO = 0 RELEASELEVEL = 0x0f SERIAL = 0 diff --git a/setup.py b/setup.py index 323a5791..89e2caec 100755 --- 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',