Skip to content

Commit 9a377c3

Browse files
committed
Update version, prepare release
1 parent a7affc3 commit 9a377c3

File tree

3 files changed

+21
-11
lines changed

3 files changed

+21
-11
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ 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.0
8+
9+
### Removed
10+
11+
- Removed support for Python 3.7
12+
13+
### Fixed
14+
15+
- Fixes <https://github.com/pappasam/jedi-language-server/issues/262>
16+
717
## 0.40.0
818

919
### Added

poetry.lock

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

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["poetry-core>=1.0.5"]
2+
requires = ["poetry-core>=1.5.1"]
33
build-backend = "poetry.core.masonry.api"
44

55
[tool.black]
@@ -11,7 +11,7 @@ line_length = 79
1111

1212
[tool.poetry]
1313
name = "jedi-language-server"
14-
version = "0.40.0"
14+
version = "0.41.0"
1515
description = "A language server for Jedi!"
1616
authors = ["Sam Roeca <[email protected]>"]
1717
readme = "README.md"
@@ -24,7 +24,7 @@ keywords = [
2424
"vim",
2525
"neovim",
2626
"lsp",
27-
"language-server-protocol",
27+
"language-server-protocol"
2828
]
2929
classifiers = [
3030
"Development Status :: 4 - Beta",
@@ -34,7 +34,7 @@ classifiers = [
3434
"Topic :: Software Development :: Libraries :: Python Modules",
3535
"Topic :: Text Editors :: Integrated Development Environments (IDE)",
3636
"Topic :: Utilities",
37-
"Typing :: Typed",
37+
"Typing :: Typed"
3838
]
3939
license = "MIT"
4040

@@ -45,7 +45,7 @@ pygls = "^1.0.1"
4545
pydantic = "^2.0.2"
4646
docstring-to-markdown = "0.*"
4747
lsprotocol = ">=2022.0.0a9"
48-
typing-extensions = { version = "^4.5.0", python = "<3.10" }
48+
typing-extensions = {version = "^4.5.0", python = "<3.10"}
4949

5050
[tool.poetry.dev-dependencies]
5151
pre-commit = ">=2.19.0"
@@ -72,7 +72,7 @@ Issues = "https://github.com/pappasam/jedi-language-server/issues"
7272
[tool.tox]
7373
legacy_tox_ini = """
7474
[tox]
75-
envlist = py{37,38,39,310,311}{,-cov}
75+
envlist = py{38,39,310,311}{,-cov}
7676
isolated_build = true
7777
skipsdist = true
7878
[testenv]

0 commit comments

Comments
 (0)