summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Slenders <jonathan@slenders.be>2018-06-08 20:04:11 +0200
committerJonathan Slenders <jonathan@slenders.be>2018-06-08 20:04:11 +0200
commit26d7ef5bc39cfd70f1b8235ef464681ba8571de7 (patch)
tree10292efb5c4ad7b325cf542bb7ef62c5b02336e1
parent43fa5beaf7057fa22d0f2554cb7560b809e9db0b (diff)
Release 2.0.32.0.3
-rw-r--r--CHANGELOG12
-rw-r--r--docs/conf.py4
-rw-r--r--prompt_toolkit/__init__.py2
3 files changed, 15 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 2be0df8f..b43ab036 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,18 @@
CHANGELOG
=========
+2.0.3: 2018-06-08
+-----------------
+
+Bug fixes:
+- Fix in 'x' and 'X' Vi key bindings. Correctly handle line endings and args.
+- Fixed off by one error in Vi line selection.
+- Fixed bugs in Vi block selection. Correctly handle lines that the selection
+ doesn't cross.
+- Python 2 bugfix. Handle str/unicode correctly.
+- Handle option+left/right in iTerm.
+
+
2.0.2: 2018-06-03
-----------------
diff --git a/docs/conf.py b/docs/conf.py
index 354df456..33a113af 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.2'
+version = '2.0.3'
# The full version, including alpha/beta/rc tags.
-release = '2.0.2'
+release = '2.0.3'
# 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 42e3b5bc..0fc8a5d4 100644
--- a/prompt_toolkit/__init__.py
+++ b/prompt_toolkit/__init__.py
@@ -20,7 +20,7 @@ from .formatted_text import HTML, ANSI
# Don't forget to update in `docs/conf.py`!
-__version__ = '2.0.2'
+__version__ = '2.0.3'
__all__ = [