Skip to content

Commit 6bdcb9d

Browse files
Release 3.0.30.
1 parent 39332d3 commit 6bdcb9d

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

Diff for: CHANGELOG

+16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
CHANGELOG
22
=========
33

4+
3.0.30: 2022-06-27
5+
------------------
6+
7+
New features:
8+
- Allow zero-width-escape sequences in `print_formatted_text`.
9+
- Add default value option for input dialog.
10+
- Added `has_suggestion` filter.
11+
12+
Fixes:
13+
- Fix rendering of control-shift-6 (or control-^). Render as '^^'
14+
- Always wrap lines in the Label widget by default.
15+
- Fix enter key binding in system toolbar in Vi mode.
16+
- Improved handling of stdout objects that don't have a 'buffer' attribute. For
17+
instance, when using `renderer_print_formatted_text` in a Jupyter Notebook.
18+
19+
420
3.0.29: 2022-04-04
521
------------------
622

Diff for: docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
# built documents.
5151
#
5252
# The short X.Y version.
53-
version = "3.0.29"
53+
version = "3.0.30"
5454
# The full version, including alpha/beta/rc tags.
55-
release = "3.0.29"
55+
release = "3.0.30"
5656

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

Diff for: src/prompt_toolkit/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from .shortcuts import PromptSession, print_formatted_text, prompt
1919

2020
# Don't forget to update in `docs/conf.py`!
21-
__version__ = "3.0.29"
21+
__version__ = "3.0.30"
2222

2323
# Version tuple.
2424
VERSION = tuple(__version__.split("."))

0 commit comments

Comments
 (0)