summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Slenders <jonathan@slenders.be>2017-07-27 12:04:31 +0200
committerJonathan Slenders <jonathan@slenders.be>2017-07-27 12:04:31 +0200
commit4476b3c28add85c5a8169fbb81ded8c3b845e588 (patch)
tree1da741b3ba17b2ad5a3045227ce9c9e499ee7132
parent36af6561be13530e631e0959fa6c78ccfc37bbba (diff)
Release 1.0.151.0.15
-rw-r--r--CHANGELOG15
-rw-r--r--docs/conf.py4
-rw-r--r--prompt_toolkit/__init__.py2
3 files changed, 18 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 16662268..c81a177e 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,21 @@
CHANGELOG
=========
+1.0.15: 2017-07-27
+------------------
+
+Fixes:
+- Don't shuffle tasks in the event loop. This fixes an issue where lines
+ printed from background threads were printed in a different order if
+ `patch_stdout=True`.
+- Only consider the text before the cursor when activating history search.
+- Pressing escape should accept the search, this is closer to how readline works.
+- Enable autowrap again when required.
+
+New features:
+- Add run_in_terminal option to disable cooked mode.
+
+
1.0.14: 2017-03-26
------------------
diff --git a/docs/conf.py b/docs/conf.py
index 0866346f..f184455a 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.14'
+version = '1.0.15'
# The full version, including alpha/beta/rc tags.
-release = '1.0.14'
+release = '1.0.15'
# 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 eb80a15a..1f679f08 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.14'
+__version__ = '1.0.15'