Skip to content

Commit 73e028f

Browse files
authored
Update changelog for 1.1.0 (#22)
1 parent c53210e commit 73e028f

File tree

2 files changed

+45
-14
lines changed

2 files changed

+45
-14
lines changed

CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
# History of changes
2+
3+
## Version 1.1.0 (2023/09/07)
4+
5+
### Issues Closed
6+
7+
* [Issue 11](https://github.com/python-lsp/python-lsp-jsonrpc/issues/11) - Drop support for Python 3.6 ([PR 16](https://github.com/python-lsp/python-lsp-jsonrpc/pull/16) by [@ccordoba12](https://github.com/ccordoba12))
8+
9+
In this release 1 issue was closed.
10+
11+
### Pull Requests Merged
12+
13+
* [PR 21](https://github.com/python-lsp/python-lsp-jsonrpc/pull/21) - Drop support for Python 3.7, by [@ccordoba12](https://github.com/ccordoba12)
14+
* [PR 20](https://github.com/python-lsp/python-lsp-jsonrpc/pull/20) - Allow method handlers to return json rpc errors, by [@smacke](https://github.com/smacke)
15+
* [PR 16](https://github.com/python-lsp/python-lsp-jsonrpc/pull/16) - Make necessary changes to drop support for Python 3.6, by [@ccordoba12](https://github.com/ccordoba12) ([11](https://github.com/python-lsp/python-lsp-jsonrpc/issues/11))
16+
* [PR 15](https://github.com/python-lsp/python-lsp-jsonrpc/pull/15) - Drop Python 3.6 on CIs and start testing with Python 3.10, by [@ccordoba12](https://github.com/ccordoba12)
17+
* [PR 14](https://github.com/python-lsp/python-lsp-jsonrpc/pull/14) - Migrate metadata from `setup.cfg` to PEP 621-compliant `pyproject.toml`, by [@KOLANICH](https://github.com/KOLANICH)
18+
* [PR 10](https://github.com/python-lsp/python-lsp-jsonrpc/pull/10) - Use f-strings wherever possible, by [@ccordoba12](https://github.com/ccordoba12)
19+
* [PR 9](https://github.com/python-lsp/python-lsp-jsonrpc/pull/9) - Add license info to setup.py so it will show up in wheel installs., by [@itsbenweeks](https://github.com/itsbenweeks)
20+
* [PR 8](https://github.com/python-lsp/python-lsp-jsonrpc/pull/8) - Move the package metadata from setup.py to setup.cfg, by [@KOLANICH](https://github.com/KOLANICH)
21+
* [PR 4](https://github.com/python-lsp/python-lsp-jsonrpc/pull/4) - PR: Fix typos in readme, by [@yaegassy](https://github.com/yaegassy)
22+
23+
In this release 9 pull requests were closed.
24+
25+
----
26+
127
## Version 1.0.0 (2021/04/14)
228

329
### Issues Closed

RELEASE.md

+19-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
1-
To release a new version of python-lsp-jsonrpc:
1+
## Before the release:
2+
3+
1. Create pull request to update CHANGELOG.md with
4+
* `loghub python-lsp/python-lsp-jsonrpc -m vX.X.X`
5+
* git add -A && git commit -m "Update changelog for X.X.X"
6+
7+
This is necessary to run our tests before the release, so we can be sure
8+
everything is in order.
9+
10+
## To release a new version of python-lsp-jsonrpc:
11+
212
1. git fetch upstream && git checkout upstream/master
313
2. Close milestone on GitHub
414
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
15+
4. git tag -a vX.X.X -m "Release vX.X.X"
16+
5. python -m pip install --upgrade pip
17+
6. pip install --upgrade --upgrade-strategy eager build setuptools twine wheel
18+
7. python -bb -X dev -W error -m build
19+
8. twine check --strict dist/*
20+
9. twine upload dist/*
21+
10. git push upstream --tags
22+
11. Create release on Github

0 commit comments

Comments
 (0)