Don’t recomend `--tags`

Adrián Chaves 2019-07-18 15:43:18 +02:00
parent ac9a1ac95c
commit 36b444a5be
1 changed files with 3 additions and 3 deletions

@ -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