From ab530900335c0d313c6e4a05a2d71482b773a908 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Sun, 19 Dec 2021 12:19:25 -0800 Subject: [PATCH] master branch is now 2.3 development as we have a 2.2 release branch --- .github/workflows/python-package.yml | 2 +- README.md | 4 ++-- dns/version.py | 2 +- doc/conf.py | 4 ++-- doc/whatsnew.rst | 7 ++++++- pyproject.toml | 2 +- 6 files changed, 13 insertions(+), 8 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 10104298..65ac1189 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -5,7 +5,7 @@ name: Python build on: push: - branches: [ master, "2.2" ] + branches: [ master ] pull_request: branches: [ master ] diff --git a/README.md b/README.md index a96c1796..81503f3b 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 the development version of dnspython 2.3.0. 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..55ec7f54 100644 --- a/dns/version.py +++ b/dns/version.py @@ -20,7 +20,7 @@ #: MAJOR MAJOR = 2 #: MINOR -MINOR = 2 +MINOR = 3 #: MICRO MICRO = 0 #: RELEASELEVEL diff --git a/doc/conf.py b/doc/conf.py index cdac9036..17e33eab 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -60,9 +60,9 @@ author = 'Dnspython Contributors' # built documents. # # The short X.Y version. -version = '2.2' +version = '2.3' # The full version, including alpha/beta/rc tags. -release = '2.2.0' +release = '2.3.0' # 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 835c04d1..e5862426 100644 --- a/doc/whatsnew.rst +++ b/doc/whatsnew.rst @@ -3,9 +3,14 @@ What's New in dnspython ======================= -2.2.0 (in development) +2.2.3 (in development) ---------------------- +* Nothing yet! + +2.2.0 +----- + * SVCB and HTTPS records have been updated to track the evolving draft standard. diff --git a/pyproject.toml b/pyproject.toml index 4aa82726..ce40dccd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dnspython" -version = "2.2.0" +version = "2.3.0" description = "DNS toolkit" authors = ["Bob Halley "] license = "ISC" -- 2.47.3