Skip to content

Commit

Permalink
Update version, prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
pappasam committed Jul 31, 2023
1 parent a7affc3 commit 9a377c3
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 11 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ 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.0

### Removed

- Removed support for Python 3.7

### Fixed

- Fixes <https://github.com/pappasam/jedi-language-server/issues/262>

## 0.40.0

### Added
Expand Down
10 changes: 5 additions & 5 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["poetry-core>=1.0.5"]
requires = ["poetry-core>=1.5.1"]
build-backend = "poetry.core.masonry.api"

[tool.black]
Expand All @@ -11,7 +11,7 @@ line_length = 79

[tool.poetry]
name = "jedi-language-server"
version = "0.40.0"
version = "0.41.0"
description = "A language server for Jedi!"
authors = ["Sam Roeca <[email protected]>"]
readme = "README.md"
Expand All @@ -24,7 +24,7 @@ keywords = [
"vim",
"neovim",
"lsp",
"language-server-protocol",
"language-server-protocol"
]
classifiers = [
"Development Status :: 4 - Beta",
Expand All @@ -34,7 +34,7 @@ classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Editors :: Integrated Development Environments (IDE)",
"Topic :: Utilities",
"Typing :: Typed",
"Typing :: Typed"
]
license = "MIT"

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

[tool.poetry.dev-dependencies]
pre-commit = ">=2.19.0"
Expand All @@ -72,7 +72,7 @@ Issues = "https://github.com/pappasam/jedi-language-server/issues"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py{37,38,39,310,311}{,-cov}
envlist = py{38,39,310,311}{,-cov}
isolated_build = true
skipsdist = true
[testenv]
Expand Down

0 comments on commit 9a377c3

Please sign in to comment.