diff options
| author | Bob Halley <halley@dnspython.org> | 2021-01-07 04:24:33 -0800 |
|---|---|---|
| committer | Bob Halley <halley@dnspython.org> | 2021-01-07 04:24:33 -0800 |
| commit | 7afdf3e497225749be5df12679f7fd5742cfb36e (patch) | |
| tree | 208f733aa6718f876a04d0563693fc4ec372c724 | |
| parent | 88b19b85d7b9b36fc34662fd62374db15600ff52 (diff) | |
| download | dnspython-7afdf3e497225749be5df12679f7fd5742cfb36e.tar.gz | |
Set 2.1.0 version.
| -rw-r--r-- | dns/version.py | 4 | ||||
| -rw-r--r-- | doc/whatsnew.rst | 2 | ||||
| -rw-r--r-- | pyproject.toml | 2 | ||||
| -rwxr-xr-x | setup.py | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/dns/version.py b/dns/version.py index 4bae41d..b371b73 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 d6b260b..0bdb860 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 ed2d9c1..11f1c63 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 <halley@dnspython.org>"] license = "ISC" @@ -20,7 +20,7 @@ import sys from setuptools import setup -version = '2.1.0rc1' +version = '2.1.0' try: sys.argv.remove("--cython-compile") |
