Skip to content

Commit effded1

Browse files
committed
Update Changelog
1 parent eb03d43 commit effded1

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## Version 1.0.0 (2021/04/14)
2+
3+
### Issues Closed
4+
5+
* [Issue 3](https://github.com/python-lsp/python-lsp-jsonrpc/issues/3) - Release v1.0.0
6+
7+
In this release 1 issue was closed.
8+
9+
### Pull Requests Merged
10+
11+
* [PR 2](https://github.com/python-lsp/python-lsp-jsonrpc/pull/2) - PR: Update package name, remove Python 2 compatibility and update CIs, by [@andfoy](https://github.com/andfoy)
12+
13+
In this release 1 pull request was closed.

RELEASE.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
To release a new version of python-lsp-jsonrpc:
2+
1. git fetch upstream && git checkout upstream/master
3+
2. Close milestone on GitHub
4+
3. git clean -xfdi
5+
4. Update CHANGELOG.md with loghub
6+
5. git add -A && git commit -m "Update Changelog"
7+
6. Update release version in ``__init__.py`` (set release version, remove 'dev0')
8+
7. git add -A && git commit -m "Release vX.X.X"
9+
8. python setup.py sdist
10+
9. python setup.py bdist_wheel
11+
10. twine check
12+
11. twine upload
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)
15+
14. git add -A && git commit -m "Back to work"
16+
15. git push upstream master
17+
16. git push upstream --tags

0 commit comments

Comments
 (0)