From 9242969accf0800322d19a1a063c71171d28c58d Mon Sep 17 00:00:00 2001 From: Jonathan Slenders Date: Sun, 3 Jun 2018 22:51:18 +0200 Subject: Release 2.0.2 --- CHANGELOG | 10 ++++++++++ docs/conf.py | 4 ++-- prompt_toolkit/__init__.py | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 56719463..2be0df8f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,16 @@ CHANGELOG ========= +2.0.2: 2018-06-03 +----------------- + +Bug fixes: +- Python 3.7 support: correctly handle StopIteration in asynchronous generator. +- Fixed off-by-one bug in Vi visual block mode. +- Bugfix in TabsProcessor: handle situations when the cursor is at the end of + the line. + + 2.0.1: 2018-06-02 ----------------- diff --git a/docs/conf.py b/docs/conf.py index ad91ef30..354df456 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,9 +51,9 @@ copyright = u'2014-2018, Jonathan Slenders' # built documents. # # The short X.Y version. -version = '2.0.1' +version = '2.0.2' # The full version, including alpha/beta/rc tags. -release = '2.0.1' +release = '2.0.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/prompt_toolkit/__init__.py b/prompt_toolkit/__init__.py index a0437b87..28d7d617 100644 --- a/prompt_toolkit/__init__.py +++ b/prompt_toolkit/__init__.py @@ -19,7 +19,7 @@ from .formatted_text import HTML, ANSI # Don't forget to update in `docs/conf.py`! -__version__ = '2.0.1' +__version__ = '2.0.2' __all__ = [ -- cgit v1.2.3