0.4.0 release notes

This commit is contained in:
Dave Halter
2019-04-05 18:57:12 +02:00
parent bd95989c2e
commit 8a06f0da05
2 changed files with 7 additions and 1 deletions

View File

@@ -3,6 +3,12 @@
Changelog
---------
0.4.0 (2019-04-05)
++++++++++++++++++
- Python 3.8 support
- FileIO support, it's now possible to use abstract file IO, support is alpha
0.3.4 (2018-02-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.3.4'
__version__ = '0.4.0'
def parse(code=None, **kwargs):