diff --git a/Scrapy-release-procedure.md b/Scrapy-release-procedure.md index 65d1c12..982e225 100644 --- a/Scrapy-release-procedure.md +++ b/Scrapy-release-procedure.md @@ -30,7 +30,7 @@ git pull --ff-only upstream master git log -1 # Check that the last commit is the release notes update bumpversion major git checkout -b 1.0 -git push upstream master 1.0 --tags +git push upstream master 1.0 1.0.0 ``` If you are releasing minor version `1.2.0`: @@ -41,7 +41,7 @@ git pull --ff-only upstream master git log -1 # Check that the last commit is the release notes update bumpversion minor git checkout -b 1.2 -git push upstream master 1.2 --tags +git push upstream master 1.2 1.2.0 ``` If you are releasing patch version `1.2.3`: @@ -51,7 +51,7 @@ git checkout 1.2 git pull --ff-only upstream 1.2 git log -1 # Check that the last commit is the release notes update bumpversion patch -git push upstream 1.2 --tags +git push upstream 1.2 1.2.3 ``` ## Python Package Index