From: Bob Halley Date: Wed, 1 Jul 2020 15:05:58 +0000 (-0700) Subject: 2.0.0rc2 versioning X-Git-Tag: v2.0.0rc2~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=407397f8d0143592620d1171ac503c07f9dcf537;p=thirdparty%2Fdnspython.git 2.0.0rc2 versioning --- diff --git a/README.md b/README.md index 1fae17b4..8cb42999 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ to facilitate the testing of DNS software. ## ABOUT THIS RELEASE -This is the dnspython 2.0.0 development branch. +This is dnspython 2.0.0rc2. 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 d8973956..dcdbbe06 100644 --- a/dns/version.py +++ b/dns/version.py @@ -24,7 +24,7 @@ MINOR = 0 #: MICRO MICRO = 0 #: RELEASELEVEL -RELEASELEVEL = 0x00 +RELEASELEVEL = 0x0c #: SERIAL SERIAL = 2 diff --git a/pyproject.toml b/pyproject.toml index 21ca0011..970d92fa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dnspython" -version = "2.0.0dev2" +version = "2.0.0rc2" description = "DNS toolkit" authors = ["Bob Halley "] license = "ISC" diff --git a/setup.py b/setup.py index 3451d9e1..a3752111 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ import sys from setuptools import setup -version = '2.0.0dev2' +version = '2.0.0rc2' try: sys.argv.remove("--cython-compile")