summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Slenders <jonathan@slenders.be>2015-05-31 13:10:29 +0200
committerJonathan Slenders <jonathan@slenders.be>2015-05-31 13:10:29 +0200
commite0d888469b1eb0aa3c65ceba09b1cd91ad13425a (patch)
treeff77ead9d865b8f3e7eb76fdff45cf80dd5eb46d
parent0c9ec073f548b9be37875f82957a43459bbfcee0 (diff)
Pypi release 0.38
-rw-r--r--CHANGELOG22
-rw-r--r--setup.py2
2 files changed, 23 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 328720ab..9939a7e8 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,28 @@
CHANGELOG
=========
+0.38: 2015-05-31
+----------------
+
+New features:
+- Improved performance significantly for processing key bindings.
+ (Pasting text will be a lot faster.)
+- Added 'M' Vi key binding.
+- Added 'z-' and 'z+' and 'z-[Enter]' Vi keybindings.
+- Correctly handle input and output encodings on Windows.
+
+Bug fixes:
+- Fix bug when completion cursor position is outside range of current text.
+- Don't crash Control-D is pressed while waiting for ENTER press (in run_system_command.)
+- On Ctrl-Z, don't suspend on Windows, where we don't have SIGTSTP.
+- Ignore result when open_in_editor received a nonzero return code.
+- Bug fix in displaying of menu meta information. Don't show 'None'.
+
+Backwards incompatible changes:
+- Refactoring of the I/O layer. Separation of the CommandLineInterface
+ and Application class.
+- Renamed enable_system_prompt to enable_system_bindings.
+
0.37: 2015-05-11
----------------
diff --git a/setup.py b/setup.py
index f1c57904..aeb9986c 100644
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@ long_description = open(
setup(
name='prompt_toolkit',
author='Jonathan Slenders',
- version='0.37',
+ version='0.38',
license='LICENSE.txt',
url='https://github.com/jonathanslenders/python-prompt-toolkit',
description='Library for building powerful interactive command lines in Python',