Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andfoy committed Apr 14, 2021
1 parent effded1 commit af196bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ To release a new version of python-lsp-jsonrpc:
3. git clean -xfdi
4. Update CHANGELOG.md with loghub
5. git add -A && git commit -m "Update Changelog"
6. Update release version in ``__init__.py`` (set release version, remove 'dev0')
6. Update release version in ``_version.py`` (set release version, remove 'dev0')
7. git add -A && git commit -m "Release vX.X.X"
8. python setup.py sdist
9. python setup.py bdist_wheel
10. twine check
11. twine upload
12. git tag -a vX.X.X -m "Release vX.X.X"
13. Update development version in ``__init__.py`` (add 'dev0' and increment minor)
13. Update development version in ``_version.py`` (add 'dev0' and increment minor)
14. git add -A && git commit -m "Back to work"
15. git push upstream master
16. git push upstream --tags
2 changes: 1 addition & 1 deletion pylsp_jsonrpc/_version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright 2017-2020 Palantir Technologies, Inc.
# Copyright 2021- Python Language Server Contributors.

VERSION_INFO = (1, 0, 0, 'dev0')
VERSION_INFO = (1, 0, 0)
__version__ = '.'.join(map(str, VERSION_INFO))

0 comments on commit af196bb

Please sign in to comment.