From a282788b29258a2dda582e7ce17583dca61fa8cf Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Fri, 30 Oct 2020 09:20:23 -0700 Subject: [PATCH] update versions for 2.1.0rc1 --- dns/version.py | 2 +- doc/whatsnew.rst | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dns/version.py b/dns/version.py index cf2184b1..4bae41df 100644 --- a/dns/version.py +++ b/dns/version.py @@ -24,7 +24,7 @@ MINOR = 1 #: MICRO MICRO = 0 #: RELEASELEVEL -RELEASELEVEL = 0x00 +RELEASELEVEL = 0x0c #: SERIAL SERIAL = 1 diff --git a/doc/whatsnew.rst b/doc/whatsnew.rst index 84e633c2..d6b260bc 100644 --- a/doc/whatsnew.rst +++ b/doc/whatsnew.rst @@ -3,7 +3,7 @@ What's New in dnspython ======================= -2.1.0 (in development) +2.1.0rc1 ---------------------- * End-of-line comments are now associated with rdata when read from text. diff --git a/pyproject.toml b/pyproject.toml index 3754007f..ed2d9c1f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dnspython" -version = "2.1.0dev1" +version = "2.1.0rc1" description = "DNS toolkit" authors = ["Bob Halley "] license = "ISC" diff --git a/setup.py b/setup.py index d7d965d8..5df5f257 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ import sys from setuptools import setup -version = '2.1.0dev1' +version = '2.1.0rc1' try: sys.argv.remove("--cython-compile") -- 2.47.3