diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 85aeea2..987bab0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,11 @@ Changelog --------- +0.2.0 () ++++++++++++++++++++ + +- f-strings are now parsed as a part of the normal Python grammar. This makes + it way easier to deal with them. 0.1.1 (2017-11-05) +++++++++++++++++++ diff --git a/parso/__init__.py b/parso/__init__.py index 7916a11..c4cce53 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.1.2' +__version__ = '0.2.0' def parse(code=None, **kwargs):