Prepare 0.7.1 release

This commit is contained in:
Dave Halter
2020-07-24 00:47:44 +02:00
parent c53321a440
commit f52103f236
2 changed files with 9 additions and 1 deletions

View File

@@ -3,6 +3,14 @@
Changelog
---------
0.7.1 (2020-07-24)
++++++++++++++++++
- Fixed a couple of smaller bugs (mostly syntax error detection in
``Grammar.iter_errors``)
This is going to be the last release that supports Python 2.7, 3.4 and 3.5.
0.7.0 (2020-04-13)
++++++++++++++++++

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