From 28c4b6612a8dff722bc79719cc2b1448c3c898cc Mon Sep 17 00:00:00 2001 From: Michaela Iorga Date: Tue, 5 Dec 2023 17:52:26 -0500 Subject: [PATCH] Updated version in the release a patch guidance --- versioning-and-branching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versioning-and-branching.md b/versioning-and-branching.md index 27a60adc92..40e97d186a 100644 --- a/versioning-and-branching.md +++ b/versioning-and-branching.md @@ -113,7 +113,7 @@ Once a patch release is ready, the release can be made using the following Git c ``` git checkout main git merge --no-ff release-1.2 -git tag -a 1.2.1 +git tag -a v1.2.1 git push --follow-tags ```