From: Bob Halley Date: Thu, 7 Jan 2021 12:24:33 +0000 (-0800) Subject: Set 2.1.0 version. X-Git-Tag: v2.1.0~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7afdf3e497225749be5df12679f7fd5742cfb36e;p=thirdparty%2Fdnspython.git Set 2.1.0 version. --- diff --git a/dns/version.py b/dns/version.py index 4bae41df..b371b73d 100644 --- a/dns/version.py +++ b/dns/version.py @@ -24,9 +24,9 @@ MINOR = 1 #: MICRO MICRO = 0 #: RELEASELEVEL -RELEASELEVEL = 0x0c +RELEASELEVEL = 0x0f #: SERIAL -SERIAL = 1 +SERIAL = 0 if RELEASELEVEL == 0x0f: # pragma: no cover #: version diff --git a/doc/whatsnew.rst b/doc/whatsnew.rst index d6b260bc..0bdb860e 100644 --- a/doc/whatsnew.rst +++ b/doc/whatsnew.rst @@ -3,7 +3,7 @@ What's New in dnspython ======================= -2.1.0rc1 +2.1.0 ---------------------- * End-of-line comments are now associated with rdata when read from text. diff --git a/pyproject.toml b/pyproject.toml index ed2d9c1f..11f1c639 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dnspython" -version = "2.1.0rc1" +version = "2.1.0" description = "DNS toolkit" authors = ["Bob Halley "] license = "ISC" diff --git a/setup.py b/setup.py index 5df5f257..31d70e18 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ import sys from setuptools import setup -version = '2.1.0rc1' +version = '2.1.0' try: sys.argv.remove("--cython-compile")