Skip to content

Commit 87d0107

Browse files
Release 3.0.42
1 parent 6a4e6dd commit 87d0107

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG

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

4+
3.0.42: 2023-12-12
5+
------------------
6+
7+
Fixes:
8+
- Fix line wrapping in `patch_stdout` on Windows.
9+
- Make `formatted_text.split_lines()` accept an iterable instead of lists only.
10+
- Disable the IPython workaround (from 3.0.41) for IPython >= 8.18.
11+
- Restore signal.SIGINT handler between prompts.
12+
13+
414
3.0.41: 2023-11-14
515
------------------
616

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = "3.0.41"
51+
version = "3.0.42"
5252
# The full version, including alpha/beta/rc tags.
53-
release = "3.0.41"
53+
release = "3.0.42"
5454

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

src/prompt_toolkit/__init__.py

Lines changed: 1 addition & 1 deletion
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.41"
30+
__version__ = "3.0.42"
3131

3232
assert pep440.match(__version__)
3333

0 commit comments

Comments
 (0)