File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,14 @@ To release a new version of python-lsp-jsonrpc:
443 . git clean -xfdi
554 . Update CHANGELOG.md with loghub
665 . git add -A && git commit -m "Update Changelog"
7- 6 . Update release version in `` __init__ .py`` (set release version, remove 'dev0')
7+ 6 . Update release version in `` _version .py`` (set release version, remove 'dev0')
887 . git add -A && git commit -m "Release vX.X.X"
998 . python setup.py sdist
10109 . python setup.py bdist_wheel
111110 . twine check
121211 . twine upload
131312 . git tag -a vX.X.X -m "Release vX.X.X"
14- 13 . Update development version in `` __init__ .py`` (add 'dev0' and increment minor)
14+ 13 . Update development version in `` _version .py`` (add 'dev0' and increment minor)
151514 . git add -A && git commit -m "Back to work"
161615 . git push upstream master
171716 . git push upstream --tags
Original file line number Diff line number Diff line change 11# Copyright 2017-2020 Palantir Technologies, Inc.
22# Copyright 2021- Python Language Server Contributors.
33
4- VERSION_INFO = (1 , 0 , 0 , 'dev0' )
4+ VERSION_INFO = (1 , 0 , 0 )
55__version__ = '.' .join (map (str , VERSION_INFO ))
You can’t perform that action at this time.
0 commit comments