From 5c1e953c176ab9961a35bfa37abf84de7bdc0889 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sun, 5 Nov 2017 12:43:55 +0100 Subject: [PATCH] Add the v0.1.1 changes to the changelog --- CHANGELOG.rst | 8 +++++++- parso/__init__.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7b0d15c..85aeea2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,7 +4,13 @@ Changelog --------- -0.1.0 (2017-05-30) +0.1.1 (2017-11-05) ++++++++++++++++++++ + +- Fixed a few bugs in the caching layer +- Added support for Python 3.7 + +0.1.0 (2017-09-04) +++++++++++++++++++ - Pulling the library out of Jedi. Some APIs will definitely change. diff --git a/parso/__init__.py b/parso/__init__.py index ecd64bf..f0a0fc4 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.1.0' +__version__ = '0.1.1' def parse(code=None, **kwargs):