From 36b444a5be150ef01203a8e67fb3ef09761dc35e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Chaves?= Date: Thu, 18 Jul 2019 15:43:18 +0200 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20recomend=20`--tags`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Scrapy-release-procedure.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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