Skip to content

Commit abe2bd0

Browse files
committed
Update Changelog
1 parent ec203ec commit abe2bd0

File tree

2 files changed

+39
-11
lines changed

2 files changed

+39
-11
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
## Version 1.0.0 (2021/04/14)
2+
3+
### Issues Closed
4+
5+
* [Issue 13](https://github.com/python-lsp/python-lsp-server/issues/13) - Release v1.0.0
6+
* [Issue 4](https://github.com/python-lsp/python-lsp-server/issues/4) - Transition plan
7+
8+
In this release 2 issues were closed.
9+
10+
### Pull Requests Merged
11+
12+
* [PR 12](https://github.com/python-lsp/python-lsp-server/pull/12) - PR: Use python-lsp-jsonrpc instead of python-jsonrpc-server, by [@andfoy](https://github.com/andfoy)
13+
* [PR 11](https://github.com/python-lsp/python-lsp-server/pull/11) - PR: Remove references to VSCode in Readme, by [@ccordoba12](https://github.com/ccordoba12)
14+
* [PR 10](https://github.com/python-lsp/python-lsp-server/pull/10) - PR: Rename namespace to pylsp and package to python-lsp-server, by [@andfoy](https://github.com/andfoy)
15+
* [PR 9](https://github.com/python-lsp/python-lsp-server/pull/9) - TST: accept folding of decorator parameters in Python 3.9, by [@bnavigator](https://github.com/bnavigator) ([8](https://github.com/python-lsp/python-lsp-server/issues/8))
16+
* [PR 7](https://github.com/python-lsp/python-lsp-server/pull/7) - Unpin numpy, by [@bnavigator](https://github.com/bnavigator)
17+
* [PR 6](https://github.com/python-lsp/python-lsp-server/pull/6) - Rewrite README from rst to md, by [@xiaoxiae](https://github.com/xiaoxiae)
18+
* [PR 5](https://github.com/python-lsp/python-lsp-server/pull/5) - Update README.rst, by [@marimeireles](https://github.com/marimeireles)
19+
* [PR 3](https://github.com/python-lsp/python-lsp-server/pull/3) - Fix CI tests by temporarily pinning numpy; update repo paths, by [@krassowski](https://github.com/krassowski)
20+
* [PR 2](https://github.com/python-lsp/python-lsp-server/pull/2) - bump jedi compatibility: compare to Path-like object, by [@bnavigator](https://github.com/bnavigator)
21+
22+
In this release 9 pull requests were closed.

RELEASE.md

+17-11
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1-
To release a new version of the PyLSP you need to follow these steps:
2-
3-
* Close the current milestone on Github
4-
5-
* git pull or git fetch/merge
6-
7-
* git tag -a X.X.X -m 'Release X.X.X'
8-
9-
* git push upstream --tags
10-
11-
* Publish release in our Github Releases page
1+
To release a new version of python-lsp-server:
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 ``_version.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 ``_version.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)