summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Slenders <jonathan@slenders.be>2016-11-07 22:25:40 +0100
committerJonathan Slenders <jonathan@slenders.be>2016-11-07 22:25:40 +0100
commit9975a33a55bb08b4f1e3083b2d82d2d5a02af000 (patch)
tree78729d5835fc5ea8f95f010f77d72ac064d9ff46
parent1ffbd3916c31230f12047b09ca875bcc312c1409 (diff)
Release 1.0.91.0.9
-rw-r--r--CHANGELOG17
-rw-r--r--docs/conf.py4
-rw-r--r--prompt_toolkit/__init__.py2
3 files changed, 20 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 181efc67..a5844477 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,23 @@
CHANGELOG
=========
+1.0.9: 2016-11-07
+-----------------
+
+Fixes:
+- Fixed a bug in the `cooked_mode` context manager. This caused a bug in
+ ptpython where executing `input()` would display ^M instead of accepting the
+ input.
+- Handle race condition in eventloop/posix.py
+- Updated ANSI color names for vt100. (High and low intensity colors were
+ swapped.)
+
+New features:
+- Added yank-nth-arg and yank-last-arg readline commands + Emacs bindings.
+- Allow searching in Vi selection mode.
+- Made text objects of the Vi 'n' and 'N' search bindings. This adds for
+ instance the following bindings: cn, cN, dn, dN, yn, yN
+
1.0.8: 2016-10-16
-----------------
diff --git a/docs/conf.py b/docs/conf.py
index c0a09b77..9a4dbc4d 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -51,9 +51,9 @@ copyright = u'2014, Jonathan Slenders'
# built documents.
#
# The short X.Y version.
-version = '1.0.8'
+version = '1.0.9'
# The full version, including alpha/beta/rc tags.
-release = '1.0.8'
+release = '1.0.9'
# 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 67a109ba..a8d02038 100644
--- a/prompt_toolkit/__init__.py
+++ b/prompt_toolkit/__init__.py
@@ -19,4 +19,4 @@ from .shortcuts import prompt, prompt_async
# Don't forget to update in `docs/conf.py`!
-__version__ = '1.0.8'
+__version__ = '1.0.9'