From: Bob Halley Date: Sat, 4 Jul 2020 17:24:47 +0000 (-0700) Subject: update version post release X-Git-Tag: v2.0.0~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ca2a77ddab82c95b90cad2c7497ce9be7ae98d9;p=thirdparty%2Fdnspython.git update version post release --- diff --git a/README.md b/README.md index 59e22515..d5a01ca7 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.0rc2. +This is the development version of dnspython 2.0.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 dcdbbe06..ddd24f5f 100644 --- a/dns/version.py +++ b/dns/version.py @@ -24,9 +24,9 @@ MINOR = 0 #: MICRO MICRO = 0 #: RELEASELEVEL -RELEASELEVEL = 0x0c +RELEASELEVEL = 0x00 #: SERIAL -SERIAL = 2 +SERIAL = 3 if RELEASELEVEL == 0x0f: # pragma: no cover #: version diff --git a/pyproject.toml b/pyproject.toml index 970d92fa..e4f5e5df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dnspython" -version = "2.0.0rc2" +version = "2.0.0dev3" description = "DNS toolkit" authors = ["Bob Halley "] license = "ISC" diff --git a/setup.py b/setup.py index 8dad5125..2090ac65 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ import sys from setuptools import setup -version = '2.0.0rc2' +version = '2.0.0dev3' try: sys.argv.remove("--cython-compile")