summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Slenders <jonathan@slenders.be>2018-06-03 22:51:18 +0200
committerJonathan Slenders <jonathan@slenders.be>2018-06-03 22:51:18 +0200
commit9242969accf0800322d19a1a063c71171d28c58d (patch)
treeb342e27d0d8abd1575bc7c7328b94e35c8222658
parent677190f37e064bba83474cae3e277681b3970cfe (diff)
Release 2.0.22.0.2
-rw-r--r--CHANGELOG10
-rw-r--r--docs/conf.py4
-rw-r--r--prompt_toolkit/__init__.py2
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__ = [