From: Bob Halley Date: Sat, 6 Jan 2024 16:28:36 +0000 (-0800) Subject: 2.5.0rc1 versioning X-Git-Tag: v2.5.0rc1^0 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a5078588622bd6a6616d1bda5b987ebc45062f24;p=thirdparty%2Fdnspython.git 2.5.0rc1 versioning --- diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index c2ae5a93..b4e0b82a 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -8,6 +8,7 @@ on: branches: - master - 2.4 + - 2.5 paths: - '**.py' pull_request: diff --git a/README.md b/README.md index 805704ac..005bab02 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ to facilitate the testing of DNS software. ## ABOUT THIS RELEASE -This is the development version of dnspython 2.5.0. +This is dnspython 2.5.0rc1. 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 1f9c7138..d18e7421 100644 --- a/dns/version.py +++ b/dns/version.py @@ -24,9 +24,9 @@ MINOR = 5 #: MICRO MICRO = 0 #: RELEASELEVEL -RELEASELEVEL = 0x00 +RELEASELEVEL = 0x0C #: SERIAL -SERIAL = 0 +SERIAL = 1 if RELEASELEVEL == 0x0F: # pragma: no cover lgtm[py/unreachable-statement] #: version diff --git a/doc/whatsnew.rst b/doc/whatsnew.rst index bf586abd..4a0c82a2 100644 --- a/doc/whatsnew.rst +++ b/doc/whatsnew.rst @@ -3,8 +3,8 @@ What's New in dnspython ======================= -2.5.0 (in development) ----------------------- +2.5.0 +----- * Dnspython now uses hatchling for builds.