File tree 3 files changed +17
-3
lines changed
3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
3
4
+ 3.0.39: 2023-07-04
5
+ ------------------
6
+
7
+ Fixes:
8
+ - Fix `RuntimeError` when `__breakpointhook__` is called from another thread.
9
+ - Fix memory leak in filters usage.
10
+ - Ensure that key bindings are handled in the right context (when using
11
+ contextvars).
12
+
13
+ New features:
14
+ - Accept `in_thread` keyword in `prompt_toolkit.shortcuts.prompt()`.
15
+ - Support the `NO_COLOR` environment variable.
16
+
17
+
4
18
3.0.38: 2023-02-28
5
19
------------------
6
20
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.38 "
53
+ version = "3.0.39 "
54
54
# The full version, including alpha/beta/rc tags.
55
- release = "3.0.38 "
55
+ release = "3.0.39 "
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 27
27
from .shortcuts import PromptSession , print_formatted_text , prompt
28
28
29
29
# Don't forget to update in `docs/conf.py`!
30
- __version__ = "3.0.38 "
30
+ __version__ = "3.0.39 "
31
31
32
32
assert pep440 .match (__version__ )
33
33
You can’t perform that action at this time.
0 commit comments