File tree 3 files changed +13
-3
lines changed
3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
3
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
+
4
14
3.0.41: 2023-11-14
5
15
------------------
6
16
Original file line number Diff line number Diff line change 48
48
# built documents.
49
49
#
50
50
# The short X.Y version.
51
- version = "3.0.41 "
51
+ version = "3.0.42 "
52
52
# The full version, including alpha/beta/rc tags.
53
- release = "3.0.41 "
53
+ release = "3.0.42 "
54
54
55
55
# The language for content autogenerated by Sphinx. Refer to documentation
56
56
# 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.41 "
30
+ __version__ = "3.0.42 "
31
31
32
32
assert pep440 .match (__version__ )
33
33
You can’t perform that action at this time.
0 commit comments