mirror of https://github.com/scrapy/scrapy.git
Don’t recomend `--tags`
parent
ac9a1ac95c
commit
36b444a5be
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue