diff --git a/CHANGELOG.md b/CHANGELOG.md index a51dd71..6c84a4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.42.0 + +### Fixed + +- Completion of dictionary keys now handles single and double quotes consistently + +### Changed + +- Jedi `Completion.path` completion items are filtered out. Resolves: + ## 0.41.4 ### Fixed diff --git a/pyproject.toml b/pyproject.toml index ca4a4ce..6148be4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ ignore_missing_imports = true [tool.poetry] name = "jedi-language-server" -version = "0.41.4" +version = "0.42.0" description = "A language server for Jedi!" authors = ["Sam Roeca "] readme = "README.md" @@ -23,8 +23,6 @@ keywords = [ "python", "completion", "refactoring", - "vim", - "neovim", "lsp", "language-server-protocol" ]