Start to write a changelog for 0.2.0

This commit is contained in:
Dave Halter
2018-04-07 02:20:00 +02:00
parent a91e5f2775
commit eda2207e6c
2 changed files with 6 additions and 1 deletions

View File

@@ -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)
+++++++++++++++++++

View File

@@ -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):