Skip to content

Commit 54151c5

Browse files
authored
Merge pull request #1535 from pquentin/simplify-releasing
Simplify releasing documentation
2 parents 566e3e7 + 5cec84e commit 54151c5

File tree

1 file changed

+9
-20
lines changed

1 file changed

+9
-20
lines changed

docs/source/releasing.rst

Lines changed: 9 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Things to do for releasing:
1919

2020
* Do the actual release changeset
2121

22-
+ update version number
22+
+ bump version number
2323

2424
- increment as per Semantic Versioning rules
2525

@@ -37,31 +37,20 @@ Things to do for releasing:
3737

3838
* create pull request to ``python-trio/trio``'s "master" branch
3939

40-
* announce PR on gitter
41-
42-
+ wait for feedback
43-
44-
+ fix problems, if any
45-
4640
* verify that all checks succeeded
4741

48-
* acknowledge the release PR
42+
* tag with vVERSION, push tag
4943

50-
+ or rather, somebody else should do that
44+
* push to PyPI::
5145

52-
* tag with vVERSION
46+
git clean -xdf # maybe run 'git clean -xdn' first to see what it will delete
47+
python3 setup.py sdist bdist_wheel
48+
twine upload dist/*
5349

54-
* push to PyPI
55-
56-
+ ``python3 setup.py sdist bdist_wheel upload``
57-
58-
* announce on gitter
59-
60-
* update version number
50+
* update version number in the same pull request
6151

6252
+ add ``+dev`` tag to the end
6353

64-
* prepare another pull request to "master"
65-
66-
+ acknowledge it
54+
* merge the release pull request
6755

56+
* announce on gitter

0 commit comments

Comments
 (0)