From: Bob Halley Date: Thu, 7 Jan 2021 17:28:21 +0000 (-0800) Subject: post 2.1.0 versioning X-Git-Tag: v2.2.0rc1~118 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a4222fd28f5cace517d48b99b85e7e34b0df0be;p=thirdparty%2Fdnspython.git post 2.1.0 versioning --- diff --git a/README.md b/README.md index 62b6df16..4a3913c2 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ to facilitate the testing of DNS software. ## ABOUT THIS RELEASE -This is dnspython 2.1.0. +This is the development version of dnspython 2.2.0. Please read [What's New](https://dnspython.readthedocs.io/en/stable/whatsnew.html) for information about the changes in this release. diff --git a/dns/version.py b/dns/version.py index b371b73d..b84c41ab 100644 --- a/dns/version.py +++ b/dns/version.py @@ -20,11 +20,11 @@ #: MAJOR MAJOR = 2 #: MINOR -MINOR = 1 +MINOR = 2 #: MICRO MICRO = 0 #: RELEASELEVEL -RELEASELEVEL = 0x0f +RELEASELEVEL = 0x00 #: SERIAL SERIAL = 0 diff --git a/doc/whatsnew.rst b/doc/whatsnew.rst index 0bdb860e..99f04927 100644 --- a/doc/whatsnew.rst +++ b/doc/whatsnew.rst @@ -3,6 +3,11 @@ What's New in dnspython ======================= +2.2.0 +---------------------- + +Nothing yet! + 2.1.0 ---------------------- diff --git a/pyproject.toml b/pyproject.toml index 11f1c639..cd90efe6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dnspython" -version = "2.1.0" +version = "2.2.0" description = "DNS toolkit" authors = ["Bob Halley "] license = "ISC" diff --git a/setup.py b/setup.py index 196d9381..c2412e6d 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ import sys from setuptools import setup -version = '2.1.0' +version = '2.2.0' try: sys.argv.remove("--cython-compile")