File tree 2 files changed +3
-3
lines changed
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:
4
4
3 . git clean -xfdi
5
5
4 . Update CHANGELOG.md with loghub
6
6
5 . 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')
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
11
10 . twine check
12
12
11 . twine upload
13
13
12 . 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)
15
15
14 . git add -A && git commit -m "Back to work"
16
16
15 . git push upstream master
17
17
16 . git push upstream --tags
Original file line number Diff line number Diff line change 1
1
# Copyright 2017-2020 Palantir Technologies, Inc.
2
2
# Copyright 2021- Python Language Server Contributors.
3
3
4
- VERSION_INFO = (1 , 0 , 0 , 'dev0' )
4
+ VERSION_INFO = (1 , 0 , 0 )
5
5
__version__ = '.' .join (map (str , VERSION_INFO ))
You can’t perform that action at this time.
0 commit comments