summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG21
-rw-r--r--setup.py2
2 files changed, 22 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 620b2467..3314e9d1 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,27 @@
CHANGELOG
=========
+0.33: 2015-04-25
+----------------
+
+Bug fixes:
+- Crash fixed in SystemCompleter when some directiories didn't exist.
+- Made text/cursor_position in Document more atomic.
+- Fixed Char.__ne__, improves performance.
+- Better performance of the filter module.
+- Refactoring of the filter module.
+- Bugfix in BufferControl, caching was not done correctly.
+- fixed 'zz' Vi key binding.
+
+New features:
+- Do tilde expansion for system commands.
+- Added ignore_case option for CommandLineInterface.
+
+Backwards incompatible changes:
+- complete_while_typing parameter has been moved from CommandLineInterface to
+ Buffer.
+
+
0.32: 2015-04-22
----------------
diff --git a/setup.py b/setup.py
index 8a1c8c17..95825540 100644
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@ long_description = open(
setup(
name='prompt_toolkit',
author='Jonathan Slenders',
- version='0.32',
+ version='0.33',
license='LICENSE.txt',
url='https://github.com/jonathanslenders/python-prompt-toolkit',
description='Library for building powerful interactive command lines in Python',