Skip to content

Commit

Permalink
Merge pull request #312 from pappasam/fix-302
Browse files Browse the repository at this point in the history
Fix #302
  • Loading branch information
pappasam authored Apr 16, 2024
2 parents d64317f + 6a006a9 commit 9df0ab5
Show file tree
Hide file tree
Showing 7 changed files with 169 additions and 151 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

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).

## 0.41.4

### Fixed

- `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>

## 0.41.3

### Added
Expand Down
1 change: 1 addition & 0 deletions jedi_language_server/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Jedi Language Server."""

from importlib.metadata import version

__version__ = version("jedi-language-server")
1 change: 0 additions & 1 deletion jedi_language_server/pygls_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
Helper functions that simplify working with pygls
"""


from typing import Optional

from lsprotocol.types import Position, Range
Expand Down
1 change: 0 additions & 1 deletion jedi_language_server/text_edit_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
`pygls.types.TextEdit` types
"""


import ast
import difflib
from bisect import bisect_right
Expand Down
306 changes: 159 additions & 147 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ignore_missing_imports = true

[tool.poetry]
name = "jedi-language-server"
version = "0.41.3"
version = "0.41.4"
description = "A language server for Jedi!"
authors = ["Sam Roeca <samuel.roeca@gmail.com>"]
readme = "README.md"
Expand Down Expand Up @@ -46,7 +46,7 @@ jedi = "^0.19.1"
pygls = "^1.1.0"
cattrs = ">=23.1.2"
docstring-to-markdown = "0.*"
lsprotocol = ">=2022.0.0a9"
lsprotocol = ">=2023.0.1"
typing-extensions = {version = "^4.5.0", python = "<3.10"}

[tool.poetry.group.dev.dependencies]
Expand Down
1 change: 1 addition & 0 deletions tests/lsp_test_client/defaults.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Default values for lsp test client."""

import os

import tests.lsp_test_client as lsp_client
Expand Down

0 comments on commit 9df0ab5

Please sign in to comment.