Skip to content

Commit fc53fe9

Browse files
Release 2.0.8
1 parent 9724063 commit fc53fe9

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

CHANGELOG

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
CHANGELOG
22
=========
33

4+
2.0.8: 2019-01-27
5+
-----------------
6+
7+
Bug fixes:
8+
- Fixes the issue where changes made to the buffer in the accept handler were
9+
not reflected in the history.
10+
- Fix in the application invalidate handler. This prevents a significat slow
11+
down in some applications after some time (especially if there is a refresh
12+
interval).
13+
- Make `print_container` utility work if the input is not a pty.
14+
15+
New features:
16+
- Underline non breaking spaces instead of rendering as '&'.
17+
- Added mouse support for radio list.
18+
- Support completion styles for `READLINE_LIKE` display method.
19+
- Accept formatted text in the display text of completions.
20+
- Added a `FuzzyCompleter` and `FuzzyWordCompleter`.
21+
- Improved error handling in Application (avoid displaying a meaningless
22+
AssertionError in many cases).
23+
24+
425
2.0.7: 2018-10-30
526
-----------------
627

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = '2.0.7'
54+
version = '2.0.8'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '2.0.7'
56+
release = '2.0.8'
5757

5858
# The language for content autogenerated by Sphinx. Refer to documentation
5959
# for a list of supported languages.

prompt_toolkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121

2222
# Don't forget to update in `docs/conf.py`!
23-
__version__ = '2.0.7'
23+
__version__ = '2.0.8'
2424

2525
# Version tuple.
2626
VERSION = tuple(__version__.split('.'))

0 commit comments

Comments
 (0)