Skip to content

Commit fa7a794

Browse files
Release 3.0.18
1 parent e8f6996 commit fa7a794

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
CHANGELOG
22
=========
33

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+
416
3.0.17: 2021-03-11
517
------------------
618

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = "3.0.17"
54+
version = "3.0.18"
5555
# The full version, including alpha/beta/rc tags.
56-
release = "3.0.17"
56+
release = "3.0.18"
5757

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

prompt_toolkit/__init__.py

Lines changed: 1 addition & 1 deletion
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.17"
21+
__version__ = "3.0.18"
2222

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

0 commit comments

Comments
 (0)