summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG17
-rw-r--r--setup.py2
2 files changed, 18 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 1a6d0ae2..85f5f690 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,23 @@
CHANGELOG
=========
+0.27: 2015-01-25
+----------------
+
+Backwards-incompatible changes:
+- Complete refactoring of the layout system. (HSplit, VSplit, FloatContainer)
+ as well as a list of controls (TokenListControl, BufferControl) in order to
+ design much more complex layouts.
+- ptpython code has been moved to a separate repository.
+
+New features:
+- prompt_toolkit.contrib.shortcuts.get_input has been extended.
+
+Fixed:
+- Behaviour of Control+left/right/up/down.
+- Backspace in incremental search.
+- Hide completion menu correctly when the cursor position changes.
+
0.26: 2015-01-08
----------------
diff --git a/setup.py b/setup.py
index 2fffed7e..448efec0 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ from setuptools import setup, find_packages
setup(
name='prompt_toolkit',
author='Jonathan Slenders',
- version='0.26',
+ version='0.27',
license='LICENSE.txt',
url='https://github.com/jonathanslenders/python-prompt-toolkit',
description='Library for building powerful interactive command lines in Python',