From 99b96951f6fbe86f64406302d18a0a7a0882785d Mon Sep 17 00:00:00 2001 From: Chris Hager Date: Tue, 27 Jun 2023 10:58:56 +0200 Subject: [PATCH] release docs: pep440 + semver tagging --- RELEASE.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index 99fad767..b0e32006 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -84,7 +84,9 @@ docker pull flashbots/mev-boost:v1.9a1 To create a new version (with tag), follow all these steps! They are necessary to have the correct build version inside, and work with `go install`. * Update [`Version`](/config/vars.go) to final version to `v1.9`, and commit -* Create a final tag: `git tag -s v1.9` +* Create final tags, both semver and pep440: + * `git tag -s v1.9` + * `git tag -s v1.9.0` * Update the `stable` branch: * `git checkout stable` * `git merge tags/v1.9 --ff-only`