Skip to content

Commit 4432d62

Browse files
Release 3.0.43
1 parent 6a24c99 commit 4432d62

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG

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

4+
3.0.43: 2023-12-13
5+
------------------
6+
7+
Fixes:
8+
- Fix regression on Pypy: Don't use `ctypes.pythonapi` to restore SIGINT if not
9+
available.
10+
11+
412
3.0.42: 2023-12-12
513
------------------
614

docs/conf.py

+2-2
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.42"
51+
version = "3.0.43"
5252
# The full version, including alpha/beta/rc tags.
53-
release = "3.0.42"
53+
release = "3.0.43"
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# 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.42"
30+
__version__ = "3.0.43"
3131

3232
assert pep440.match(__version__)
3333

0 commit comments

Comments
 (0)