From: Bob Halley Date: Fri, 17 Jul 2020 13:40:27 +0000 (-0700) Subject: update version post-release X-Git-Tag: v2.1.0rc1~180 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a9c32cc6ee71e7ad71eeaaa50507719f348d4b8;p=thirdparty%2Fdnspython.git update version post-release --- diff --git a/README.md b/README.md index 7c6bd2e8..e22e81ea 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ to facilitate the testing of DNS software. ## ABOUT THIS RELEASE -This is dnspython 2.0.0. +This is the development version of dnspython 2.1.0. Please read [What's New](https://dnspython.readthedocs.io/en/latest/whatsnew.html) for information about the changes in this release. diff --git a/dns/version.py b/dns/version.py index 0b7c1d13..cf2184b1 100644 --- a/dns/version.py +++ b/dns/version.py @@ -20,13 +20,13 @@ #: MAJOR MAJOR = 2 #: MINOR -MINOR = 0 +MINOR = 1 #: MICRO MICRO = 0 #: RELEASELEVEL -RELEASELEVEL = 0x0f +RELEASELEVEL = 0x00 #: SERIAL -SERIAL = 0 +SERIAL = 1 if RELEASELEVEL == 0x0f: # pragma: no cover #: version diff --git a/pyproject.toml b/pyproject.toml index 053b79c9..059993f0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dnspython" -version = "2.0.0" +version = "2.1.0dev1" description = "DNS toolkit" authors = ["Bob Halley "] license = "ISC" diff --git a/setup.py b/setup.py index cd1be21a..d7d965d8 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ import sys from setuptools import setup -version = '2.0.0' +version = '2.1.0dev1' try: sys.argv.remove("--cython-compile")