Bump the parso version to 0.3.2

This commit is contained in:
Dave Halter
2019-01-24 00:21:59 +01:00
parent b5d8175eaa
commit 9c9e6ffede
2 changed files with 9 additions and 1 deletions
+8
View File
@@ -3,6 +3,14 @@
Changelog Changelog
--------- ---------
0.3.2 (2018-07-09)
+++++++++++++++++++
- 20+ bugfixes in the diff parser and 3 in the tokenizer
- A fuzzer for the diff parser, to give confidence that the diff parser is in a
good shape.
- Some bugfixes for f-string
0.3.1 (2018-07-09) 0.3.1 (2018-07-09)
+++++++++++++++++++ +++++++++++++++++++
+1 -1
View File
@@ -43,7 +43,7 @@ from parso.grammar import Grammar, load_grammar
from parso.utils import split_lines, python_bytes_to_unicode from parso.utils import split_lines, python_bytes_to_unicode
__version__ = '0.3.1' __version__ = '0.3.2'
def parse(code=None, **kwargs): def parse(code=None, **kwargs):