Write 0.7.0 release notes

This commit is contained in:
Dave Halter
2020-04-13 11:15:05 +02:00
parent 63b73a05e6
commit 66ecc264f9
2 changed files with 5 additions and 4 deletions

View File

@@ -3,10 +3,11 @@
Changelog
---------
0.7.0 (2020-04-)
++++++++++++++++
0.7.0 (2020-04-13)
++++++++++++++++++
- Fix a lot of annoying bugs in the diff parser
- Fix a lot of annoying bugs in the diff parser. The fuzzer did not find
issues anymore even after running it for more than 24 hours (500k tests).
- Small grammar change: suites can now contain newlines even after a newline.
This should really not matter if you don't use error recovery. It allows for
nicer error recovery.

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.6.2'
__version__ = '0.7.0'
def parse(code=None, **kwargs):