From f52103f2364892fc800a0a81d5afae13929cb673 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Fri, 24 Jul 2020 00:47:44 +0200 Subject: [PATCH] Prepare 0.7.1 release --- CHANGELOG.rst | 8 ++++++++ parso/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b5d8560..4a08454 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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) ++++++++++++++++++ diff --git a/parso/__init__.py b/parso/__init__.py index 4b47913..f331984 100644 --- a/parso/__init__.py +++ b/parso/__init__.py @@ -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):