Skip to content

Commit

Permalink
Release 2.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanslenders committed Jan 27, 2019
1 parent 9724063 commit fc53fe9
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG
@@ -1,6 +1,27 @@
CHANGELOG
=========

2.0.8: 2019-01-27
-----------------

Bug fixes:
- Fixes the issue where changes made to the buffer in the accept handler were
not reflected in the history.
- Fix in the application invalidate handler. This prevents a significat slow
down in some applications after some time (especially if there is a refresh
interval).
- Make `print_container` utility work if the input is not a pty.

New features:
- Underline non breaking spaces instead of rendering as '&'.
- Added mouse support for radio list.
- Support completion styles for `READLINE_LIKE` display method.
- Accept formatted text in the display text of completions.
- Added a `FuzzyCompleter` and `FuzzyWordCompleter`.
- Improved error handling in Application (avoid displaying a meaningless
AssertionError in many cases).


2.0.7: 2018-10-30
-----------------

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '2.0.7'
version = '2.0.8'
# The full version, including alpha/beta/rc tags.
release = '2.0.7'
release = '2.0.8'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion prompt_toolkit/__init__.py
Expand Up @@ -20,7 +20,7 @@


# Don't forget to update in `docs/conf.py`!
__version__ = '2.0.7'
__version__ = '2.0.8'

# Version tuple.
VERSION = tuple(__version__.split('.'))
Expand Down

0 comments on commit fc53fe9

Please sign in to comment.