Skip to content

Commit 779c97a

Browse files
authored
Update changelog for 1.10.1 (#534)
Also, fix some small formatting issues reported by Ruff.
1 parent 4f6d7cb commit 779c97a

File tree

6 files changed

+24
-3
lines changed

6 files changed

+24
-3
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# History of changes
22

3+
## Version 1.10.1 (2024/03/12)
4+
5+
### Issues Closed
6+
7+
* [Issue 529](https://github.com/python-lsp/python-lsp-server/issues/529) - Autoimports: sqlite3.OperationalError: database is locked ([PR 530](https://github.com/python-lsp/python-lsp-server/pull/530) by [@last-partizan](https://github.com/last-partizan))
8+
9+
In this release 1 issue was closed.
10+
11+
### Pull Requests Merged
12+
13+
* [PR 530](https://github.com/python-lsp/python-lsp-server/pull/530) - Fix progress reporting with autoimport plugin, by [@last-partizan](https://github.com/last-partizan) ([529](https://github.com/python-lsp/python-lsp-server/issues/529))
14+
* [PR 528](https://github.com/python-lsp/python-lsp-server/pull/528) - Improve error message about missing `websockets` module, by [@tomplus](https://github.com/tomplus)
15+
16+
In this release 2 pull requests were closed.
17+
18+
----
19+
320
## Version 1.10.0 (2024/01/21)
421

522
### New features

pylsp/_utils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ def escape_plain_text(contents: str) -> str:
175175
"""
176176
Format plain text to display nicely in environments which do not respect whitespaces.
177177
"""
178-
contents = contents.replace("\t", "\u00A0" * 4)
179-
contents = contents.replace(" ", "\u00A0" * 2)
178+
contents = contents.replace("\t", "\u00a0" * 4)
179+
contents = contents.replace(" ", "\u00a0" * 2)
180180
return contents
181181

182182

pylsp/plugins/flake8_lint.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Copyright 2021- Python Language Server Contributors.
33

44
"""Linter pluging for flake8"""
5+
56
import logging
67
import os.path
78
import re

pylsp/plugins/pylint_lint.py

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Copyright 2021- Python Language Server Contributors.
44

55
"""Linter plugin for pylint."""
6+
67
import collections
78
import logging
89
import os

pylsp/uris.py

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
66
https://github.com/Microsoft/vscode-uri/blob/e59cab84f5df6265aed18ae5f43552d3eef13bb9/lib/index.ts
77
"""
8+
89
import re
910
from urllib import parse
1011

test/conftest.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Copyright 2017-2020 Palantir Technologies, Inc.
22
# Copyright 2021- Python Language Server Contributors.
33

4-
""" py.test configuration"""
4+
"""pytest configuration"""
5+
56
import logging
67

78
from pylsp.__main__ import LOG_FORMAT

0 commit comments

Comments
 (0)