From: Bob Halley Date: Sat, 20 Jun 2020 21:14:49 +0000 (-0700) Subject: set versioning to dev X-Git-Tag: v2.0.0rc2~83 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56eec30b771efefed49fd16a147e0cafb1134ab4;p=thirdparty%2Fdnspython.git set versioning to dev --- diff --git a/README.md b/README.md index cb31b6ee..0de8e95b 100644 --- a/README.md +++ b/README.md @@ -29,8 +29,8 @@ to facilitate the testing of DNS software. ## ABOUT THIS RELEASE -This is dnspython 2.0.0rc1, the first release candidate for dnspython -2.0.0. Please read +This is the dnspython 2.0.0 development branch. +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 a9d24615..d8973956 100644 --- a/dns/version.py +++ b/dns/version.py @@ -24,9 +24,9 @@ MINOR = 0 #: MICRO MICRO = 0 #: RELEASELEVEL -RELEASELEVEL = 0x0c +RELEASELEVEL = 0x00 #: SERIAL -SERIAL = 1 +SERIAL = 2 if RELEASELEVEL == 0x0f: # pragma: no cover #: version diff --git a/pyproject.toml b/pyproject.toml index 3ec4d9d0..017ea575 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dnspython" -version = "2.0.0rc1" +version = "2.0.0dev2" description = "DNS toolkit" authors = ["Bob Halley "] license = "ISC" diff --git a/setup.py b/setup.py index 226e102d..3451d9e1 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ import sys from setuptools import setup -version = '2.0.0rc1' +version = '2.0.0dev2' try: sys.argv.remove("--cython-compile")