File tree Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
3
4
+ 3.0.29: 2022-04-04
5
+ ------------------
6
+
7
+ New features:
8
+ - Accept 'handle_sigint' parameter in PromptSession.
9
+
10
+ Fixes
11
+ - Fix 'variable referenced before assignment' error in vt100 mouse bindings.
12
+ - Pass `handle_sigint` from `Application.run` to `Application.run_async`.
13
+ - Fix detection of telnet client side changes.
14
+ - Fix `print_container` utility (handle `EOFError`).
15
+
16
+ Breaking changes:
17
+ - The following are now context managers:
18
+ `create_pipe_input`, `PosixPipeInput` and `Win32PipeInput`.
19
+
20
+
4
21
3.0.28: 2022-02-11
5
22
------------------
6
23
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.28 "
53
+ version = "3.0.29 "
54
54
# The full version, including alpha/beta/rc tags.
55
- release = "3.0.28 "
55
+ release = "3.0.29 "
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.28 "
21
+ __version__ = "3.0.29 "
22
22
23
23
# Version tuple.
24
24
VERSION = tuple (__version__ .split ("." ))
You can’t perform that action at this time.
0 commit comments