From 0c63a788e9afb36cd1de44e449a580ad5909a4c1 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Sat, 18 Dec 2021 05:54:36 -0800 Subject: [PATCH] 2.2.0rc1 versioning --- README.md | 4 ++-- dns/version.py | 4 ++-- doc/conf.py | 2 +- doc/whatsnew.rst | 7 +++++-- pyproject.toml | 2 +- 5 files changed, 11 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index a96c1796..7ed06e7d 100644 --- a/README.md +++ b/README.md @@ -28,9 +28,9 @@ to facilitate the testing of DNS software. ## ABOUT THIS RELEASE -This is the development version of dnspython 2.2.0. +This is dnspython 2.2.0rc1. Please read -[What's New](https://dnspython.readthedocs.io/en/stable/whatsnew.html) for +[What's New](https://dnspython.readthedocs.io/en/latest/whatsnew.html) for information about the changes in this release. ## INSTALLATION diff --git a/dns/version.py b/dns/version.py index b84c41ab..4d4af47d 100644 --- a/dns/version.py +++ b/dns/version.py @@ -24,9 +24,9 @@ MINOR = 2 #: MICRO MICRO = 0 #: RELEASELEVEL -RELEASELEVEL = 0x00 +RELEASELEVEL = 0x0c #: SERIAL -SERIAL = 0 +SERIAL = 1 if RELEASELEVEL == 0x0f: # pragma: no cover #: version diff --git a/doc/conf.py b/doc/conf.py index cdac9036..b7c88806 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -62,7 +62,7 @@ author = 'Dnspython Contributors' # The short X.Y version. version = '2.2' # The full version, including alpha/beta/rc tags. -release = '2.2.0' +release = '2.2.0rc1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/whatsnew.rst b/doc/whatsnew.rst index 7f7f125d..fcb8e894 100644 --- a/doc/whatsnew.rst +++ b/doc/whatsnew.rst @@ -3,8 +3,8 @@ What's New in dnspython ======================= -2.2.0 (in development) ----------------------- +2.2.0 +----- * SVCB and HTTPS records have been updated to track the evolving draft standard. @@ -44,6 +44,9 @@ What's New in dnspython Likewise if you have a node containing an MX rdataset and add a CNAME rdataset, the MX rdataset will be deleted. +See the `2.2 project `_ on +github or the git change log for more details. + 2.1.0 ---------------------- diff --git a/pyproject.toml b/pyproject.toml index 4aa82726..8e41ec1c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dnspython" -version = "2.2.0" +version = "2.2.0rc1" description = "DNS toolkit" authors = ["Bob Halley "] license = "ISC" -- 2.47.3