From: Bob Halley Date: Tue, 3 May 2016 23:16:33 +0000 (-0700) Subject: start 1.13 release prep X-Git-Tag: v1.13.0~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d9c9f520d4d15a8c2759dbeabad15e4dec9043e;p=thirdparty%2Fdnspython.git start 1.13 release prep --- diff --git a/ChangeLog b/ChangeLog index c953588e..32ddb21f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2016-05-03 Arthur Gautier + + * Single source support for python 2 and 3 + 2014-09-04 Bob Halley * Comparing two rdata is now always done by comparing the binary diff --git a/README.md b/README.md index 64146e2a..71eddfd8 100644 --- a/README.md +++ b/README.md @@ -20,16 +20,28 @@ open sourced under a BSD-style license, and helps support its future development by continuing to employ the author :). ## INSTALLATION -- If you have pip installed and are using Python 2.x, you can do this +- If you have pip installed, you can do this `pip install dnspython` -- If you have pip installed and are using Python 3.x, you can do this -`pip install dnspython3` - If not just download the source file and unzip it, then run this `sudo python setup.py install` ## ABOUT THIS RELEASE -This is dnspython 1.12.0 +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 + challenge and making it work! It was a big job! + + Support for Python older than 2.6 dropped. + + XXX TBD XXX + +Bugs fixed since 1.12.0: + + XXX TBD XXX New since 1.11.1: diff --git a/dns/version.py b/dns/version.py index 8279fef5..94ab87fa 100644 --- a/dns/version.py +++ b/dns/version.py @@ -16,7 +16,7 @@ """dnspython release version information.""" MAJOR = 1 -MINOR = 12 +MINOR = 13 MICRO = 0 RELEASELEVEL = 0x0f SERIAL = 0 diff --git a/setup.py b/setup.py index 04d3ab11..67287c43 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ import sys from setuptools import setup -version = '1.12.0' +version = '1.13.0' kwargs = { 'name' : 'dnspython',