diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cb63a27a..a1de3b47 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,9 @@ Changelog Unreleased ++++++++++ +0.18.0 (2020-12-25) ++++++++++++++++++++ + - Dropped Python 2 and Python 3.5 - Using ``pathlib.Path()`` as an output instead of ``str`` in most places: - ``Project.path`` diff --git a/jedi/__init__.py b/jedi/__init__.py index 1c8cb682..b6437a5d 100644 --- a/jedi/__init__.py +++ b/jedi/__init__.py @@ -27,7 +27,7 @@ ad load """ -__version__ = '0.17.2' +__version__ = '0.18.0' from jedi.api import Script, Interpreter, set_debug_function, preload_module from jedi import settings