Skip to content

Commit 490cf90

Browse files
Release 3.0.39
1 parent 24005be commit 490cf90

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

CHANGELOG

+14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
CHANGELOG
22
=========
33

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+
418
3.0.38: 2023-02-28
519
------------------
620

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
# built documents.
5151
#
5252
# The short X.Y version.
53-
version = "3.0.38"
53+
version = "3.0.39"
5454
# The full version, including alpha/beta/rc tags.
55-
release = "3.0.38"
55+
release = "3.0.39"
5656

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

src/prompt_toolkit/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from .shortcuts import PromptSession, print_formatted_text, prompt
2828

2929
# Don't forget to update in `docs/conf.py`!
30-
__version__ = "3.0.38"
30+
__version__ = "3.0.39"
3131

3232
assert pep440.match(__version__)
3333

0 commit comments

Comments
 (0)