From aa476e255be606edbf2287bfa978fe6aad2e9daa Mon Sep 17 00:00:00 2001 From: Jonathan Slenders Date: Mon, 20 Jun 2016 21:16:40 +0200 Subject: Release 1.0.3 --- CHANGELOG | 13 +++++++++++++ docs/conf.py | 4 ++-- prompt_toolkit/__init__.py | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 432e2de4..09f85426 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,19 @@ CHANGELOG ========= +1.0.3: 2016-06-20 +----------------- + +Fixes: +- Bugfix for Python2 in readline-like completion. +- Bugfix in readline-like completion visualisation. + +New features: +- Added `erase_when_done` parameter to the `Aplication` class. (This was + required for the bug fixes.) +- Added (experimental) `CommandLineInterface.run_application_generator` method. + (Also required for the bug fix.) + 1.0.2: 2016-06-16 ----------------- diff --git a/docs/conf.py b/docs/conf.py index 516a79ca..e840877f 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.2' +version = '1.0.3' # The full version, including alpha/beta/rc tags. -release = '1.0.2' +release = '1.0.3' # 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 25ae04a4..381aad8e 100644 --- a/prompt_toolkit/__init__.py +++ b/prompt_toolkit/__init__.py @@ -19,4 +19,4 @@ from .shortcuts import prompt # Don't forget to update in `docs/conf.py`! -__version__ = '1.0.2' +__version__ = '1.0.3' -- cgit v1.2.3