From 8330b20e05ed1efd88a30227064f04c1b10ec6ce Mon Sep 17 00:00:00 2001 From: Dain Nilsson Date: Wed, 26 Feb 2025 09:24:26 +0100 Subject: [PATCH] Update RELEASE.adoc --- RELEASE.adoc | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/RELEASE.adoc b/RELEASE.adoc index 3553c48d..240d2a57 100644 --- a/RELEASE.adoc +++ b/RELEASE.adoc @@ -3,8 +3,8 @@ $ git checkout -b release/x.y.z -* Update the version in pyproject.toml and fido/__init__.py and make sure the - NEWS file has an entry for it, and the correct release date. +* Update the version in pyproject.toml and make sure the NEWS file has an entry for it, + and the correct release date. * Commit the changes, and push the new branch. $ git push -u origin release/x.y.z @@ -40,15 +40,11 @@ $ git push origin :release/x.y.z * Bump the version number by incrementing the PATCH version and appending -dev.0 - in pyproject.toml and fido2/__init__.py and add a new entry (unreleased) to the - NEWS file. + in pyproject.toml and add a new entry (unreleased) to the NEWS file. # pyproject.toml: version = "x.y.q-dev.0" - # fido2/__init__.py: - __version__ = 'x.y.q-dev.0' - * Commit and push the change: $ git commit -a -m "Bump version." && git push