File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
3
4
+ 3.0.18: 2021-03-22
5
+ ------------------
6
+
7
+ New features:
8
+ - Added `in_thread` parameter to `Application.run`.
9
+ This is useful for running an application in a background thread, while the
10
+ main thread blocks. This way, we are sure not to interfere with an event loop
11
+ in the current thread. (This simplifies some code in ptpython and fixes an
12
+ issue regarding leaking file descriptors due to not closing the event loop
13
+ that was created in this background thread.)
14
+
15
+
4
16
3.0.17: 2021-03-11
5
17
------------------
6
18
Original file line number Diff line number Diff line change 51
51
# built documents.
52
52
#
53
53
# The short X.Y version.
54
- version = "3.0.17 "
54
+ version = "3.0.18 "
55
55
# The full version, including alpha/beta/rc tags.
56
- release = "3.0.17 "
56
+ release = "3.0.18 "
57
57
58
58
# The language for content autogenerated by Sphinx. Refer to documentation
59
59
# 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.17 "
21
+ __version__ = "3.0.18 "
22
22
23
23
# Version tuple.
24
24
VERSION = tuple (__version__ .split ("." ))
You can’t perform that action at this time.
0 commit comments