diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a793c123..e616609b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,9 +6,15 @@ Changelog Unreleased ++++++++++ +0.18.2 (2022-11-21) ++++++++++++++++++++ + - Added dataclass-equivalent for attrs.define - Find fixtures from Pytest entrypoints; Examples of pytest plugins installed like this are pytest-django, pytest-sugar and Faker. +- Fixed Project.search, when a venv was involved, which is why for example + `:Pyimport django.db` did not work in some cases in jedi-vim. +- And many smaller bugfixes 0.18.1 (2021-11-17) +++++++++++++++++++ diff --git a/jedi/__init__.py b/jedi/__init__.py index e5ed6f26..bbe7f761 100644 --- a/jedi/__init__.py +++ b/jedi/__init__.py @@ -27,7 +27,7 @@ ad load """ -__version__ = '0.18.1' +__version__ = '0.18.2' from jedi.api import Script, Interpreter, set_debug_function, preload_module from jedi import settings