diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 971ee89..a02b191 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,12 @@ Changelog --------- +0.5.1 (2019-07-13) +++++++++++++++++++ + +- Fix: Some unicode identifiers were not correctly tokenized +- Fix: Line continuations in f-strings are now working + 0.5.0 (2019-06-20) ++++++++++++++++++ diff --git a/parso/__init__.py b/parso/__init__.py index 0b217dc..a16a72f 100644 --- a/parso/__init__.py +++ b/parso/__init__.py @@ -43,7 +43,7 @@ from parso.grammar import Grammar, load_grammar from parso.utils import split_lines, python_bytes_to_unicode -__version__ = '0.5.0' +__version__ = '0.5.1' def parse(code=None, **kwargs):