From 7afdf3e497225749be5df12679f7fd5742cfb36e Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Thu, 7 Jan 2021 04:24:33 -0800 Subject: [PATCH] Set 2.1.0 version. --- dns/version.py | 4 ++-- doc/whatsnew.rst | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) 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") -- 2.47.3