File tree Expand file tree Collapse file tree 3 files changed +19
-3
lines changed
Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 11CHANGELOG
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+
4203.0.29: 2022-04-04
521------------------
622
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 1818from .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.
2424VERSION = tuple (__version__ .split ("." ))
You can’t perform that action at this time.
0 commit comments