File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change
1
+ The following are instructions to maintain python-lsp-black
2
+ 1 . Releases are tracked using Github milestones, which can be created and closed
3
+ under the ` Issues > Milestones ` page: https://github.com/python-lsp/python-lsp-black/milestones .
4
+ 2 . If a issue will be fixed as part of a particular release, then its milestone
5
+ should be the release-corresponding one.
6
+ 3 . Please make sure that PRs are also tracked under a specific milestone.
7
+ 4 . Please follow the [ RELEASE.md] ( ./RELEASE.md ) file when making a release.
Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ To release a new version of python-lsp-black:
2
2
1 . git fetch upstream && git checkout upstream/master
3
3
2 . Close milestone on GitHub
4
4
3 . git clean -xfdi
5
- 4 . Update CHANGELOG.md with loghub
5
+ 4 . Update CHANGELOG.md with loghub: ` loghub python-lsp/python-lsp-black --milestone vX.X.X `
6
6
5 . git add -A && git commit -m "Update Changelog"
7
- 6 . Update release version in `` setup.cfg `` (set release version, remove 'dev0')
7
+ 6 . Update release version in `` setup.cfg `` (set release version, remove '. dev0')
8
8
7 . git add -A && git commit -m "Release vX.X.X"
9
9
8 . python setup.py sdist
10
10
9 . python setup.py bdist_wheel
11
- 10 . twine check
12
- 11 . twine upload
11
+ 10 . twine check dist/ *
12
+ 11 . twine upload dist/ *
13
13
12 . git tag -a vX.X.X -m "Release vX.X.X"
14
14
13 . Update development version in `` setup.cfg `` (add '.dev0' and increment minor)
15
15
14 . git add -A && git commit -m "Back to work"
You can’t perform that action at this time.
0 commit comments