3.1 release notes

This commit is contained in:
Dave Halter
2018-07-09 20:27:10 +02:00
parent e7f71a3eba
commit 59605438e9
2 changed files with 7 additions and 2 deletions

View File

@@ -3,7 +3,12 @@
Changelog
---------
0.3.0 (2018-07-30)
0.3.1 (2018-07-09)
+++++++++++++++++++
- Bugfixes in the diff parser and keyword-only arguments
0.3.0 (2018-06-30)
+++++++++++++++++++
- Rewrote the pgen2 parser generator.

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