From: Bob Halley Date: Thu, 16 Jul 2020 14:30:11 +0000 (-0700) Subject: 2.0.0 versioning X-Git-Tag: v2.0.0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8243c571088bb2f9c3f5b49c5b96d7726e07231d;p=thirdparty%2Fdnspython.git 2.0.0 versioning --- diff --git a/README.md b/README.md index d5a01ca7..7c6bd2e8 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ to facilitate the testing of DNS software. ## ABOUT THIS RELEASE -This is the development version of dnspython 2.0.0. +This is 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 ddd24f5f..0b7c1d13 100644 --- a/dns/version.py +++ b/dns/version.py @@ -24,9 +24,9 @@ MINOR = 0 #: MICRO MICRO = 0 #: RELEASELEVEL -RELEASELEVEL = 0x00 +RELEASELEVEL = 0x0f #: SERIAL -SERIAL = 3 +SERIAL = 0 if RELEASELEVEL == 0x0f: # pragma: no cover #: version diff --git a/pyproject.toml b/pyproject.toml index e4f5e5df..053b79c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dnspython" -version = "2.0.0dev3" +version = "2.0.0" description = "DNS toolkit" authors = ["Bob Halley "] license = "ISC" diff --git a/setup.py b/setup.py index 2090ac65..cd1be21a 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ import sys from setuptools import setup -version = '2.0.0dev3' +version = '2.0.0' try: sys.argv.remove("--cython-compile")