From 587977e2dee580068387bd935bd6a894003ad19f Mon Sep 17 00:00:00 2001 From: Jonathan Slenders Date: Sun, 21 Aug 2016 21:19:19 +0200 Subject: Release 1.0.7 --- CHANGELOG | 12 ++++++++++++ docs/conf.py | 4 ++-- prompt_toolkit/__init__.py | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 8d95be41..d7c0de5e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,18 @@ CHANGELOG ========= +1.0.7: 2016-08-21 +----------------- + +Fixes: +- Bugfix in completion. When calculating the common completion to be inserted, + the new completions were calculated wrong. +- On Windows, avoid extra vertical scrolling if the cursor is already on screen. + +New features: +- Support negative arguments for next/previous word ending/beginning. + + 1.0.6: 2016-08-15 ----------------- diff --git a/docs/conf.py b/docs/conf.py index b30cf345..18c24514 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.6' +version = '1.0.7' # The full version, including alpha/beta/rc tags. -release = '1.0.6' +release = '1.0.7' # 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 90e1aac6..b5a76aa9 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.6' +__version__ = '1.0.7' -- cgit v1.2.3