Skip to content

Commit

Permalink
Release 3.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanslenders committed Aug 29, 2020
1 parent 7fdd815 commit b839efc
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG
@@ -1,6 +1,26 @@
CHANGELOG
=========

3.0.7: 2020-08-29
-----------------

New features:
- New "placeholder" parameter added to `PromptSession`.

Other changes:
- The "respond to CPR" logic has been moved from the `Input` to `Output`
classes (this does clean up some code).

Fixes:
- Bugfix in shift-selection key bindings.
- Fix hight calculation of `FormattedTextControl` when line wrapping is turned
on.
- Fixes for SSH server:
* Missing encoding property.
* Fix failure in "set_line_mode" call.
* Handle `BrokenPipeError`.


3.0.6: 2020-08-10
-----------------

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 = '3.0.6'
version = '3.0.7'
# The full version, including alpha/beta/rc tags.
release = '3.0.6'
release = '3.0.7'

# 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 @@ -18,7 +18,7 @@
from .shortcuts import PromptSession, print_formatted_text, prompt

# Don't forget to update in `docs/conf.py`!
__version__ = "3.0.6"
__version__ = "3.0.7"

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

0 comments on commit b839efc

Please sign in to comment.