From 1ca5ae4008da7fefe56c0612fa1a4ae8307ae779 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Thu, 13 Jun 2019 17:26:08 +0200 Subject: [PATCH] Bump the version number to the next release: 0.5.0 --- parso/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parso/__init__.py b/parso/__init__.py index a789aef..0b217dc 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.4.1' +__version__ = '0.5.0' def parse(code=None, **kwargs):