Skip to content

Commit 9df0ab5

Browse files
authored
Merge pull request pappasam#312 from pappasam/fix-302
Fix pappasam#302
2 parents d64317f + 6a006a9 commit 9df0ab5

File tree

7 files changed

+169
-151
lines changed

7 files changed

+169
-151
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.41.4
8+
9+
### Fixed
10+
11+
- `lsprotocol`'s dependency specification in this project ended up pulling in an alpha version of the project. This release fixes that issue: <https://github.com/pappasam/jedi-language-server/issues/302>
12+
713
## 0.41.3
814

915
### Added

jedi_language_server/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Jedi Language Server."""
2+
23
from importlib.metadata import version
34

45
__version__ = version("jedi-language-server")

jedi_language_server/pygls_utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
Helper functions that simplify working with pygls
44
"""
55

6-
76
from typing import Optional
87

98
from lsprotocol.types import Position, Range

jedi_language_server/text_edit_utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
`pygls.types.TextEdit` types
55
"""
66

7-
87
import ast
98
import difflib
109
from bisect import bisect_right

poetry.lock

Lines changed: 159 additions & 147 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ignore_missing_imports = true
1313

1414
[tool.poetry]
1515
name = "jedi-language-server"
16-
version = "0.41.3"
16+
version = "0.41.4"
1717
description = "A language server for Jedi!"
1818
authors = ["Sam Roeca <[email protected]>"]
1919
readme = "README.md"
@@ -46,7 +46,7 @@ jedi = "^0.19.1"
4646
pygls = "^1.1.0"
4747
cattrs = ">=23.1.2"
4848
docstring-to-markdown = "0.*"
49-
lsprotocol = ">=2022.0.0a9"
49+
lsprotocol = ">=2023.0.1"
5050
typing-extensions = {version = "^4.5.0", python = "<3.10"}
5151

5252
[tool.poetry.group.dev.dependencies]

tests/lsp_test_client/defaults.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Default values for lsp test client."""
2+
23
import os
34

45
import tests.lsp_test_client as lsp_client

0 commit comments

Comments
 (0)