File tree 3 files changed +19
-3
lines changed
3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
3
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
+
4
20
3.0.29: 2022-04-04
5
21
------------------
6
22
Original file line number Diff line number Diff line change 50
50
# built documents.
51
51
#
52
52
# The short X.Y version.
53
- version = "3.0.29 "
53
+ version = "3.0.30 "
54
54
# The full version, including alpha/beta/rc tags.
55
- release = "3.0.29 "
55
+ release = "3.0.30 "
56
56
57
57
# The language for content autogenerated by Sphinx. Refer to documentation
58
58
# for a list of supported languages.
Original file line number Diff line number Diff line change 18
18
from .shortcuts import PromptSession , print_formatted_text , prompt
19
19
20
20
# Don't forget to update in `docs/conf.py`!
21
- __version__ = "3.0.29 "
21
+ __version__ = "3.0.30 "
22
22
23
23
# Version tuple.
24
24
VERSION = tuple (__version__ .split ("." ))
You can’t perform that action at this time.
0 commit comments