Skip to content

Commit

Permalink
Release 3.0.43
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanslenders committed Dec 13, 2023
1 parent 6a24c99 commit 4432d62
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
CHANGELOG
=========

3.0.43: 2023-12-13
------------------

Fixes:
- Fix regression on Pypy: Don't use `ctypes.pythonapi` to restore SIGINT if not
available.


3.0.42: 2023-12-12
------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = "3.0.42"
version = "3.0.43"
# The full version, including alpha/beta/rc tags.
release = "3.0.42"
release = "3.0.43"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion src/prompt_toolkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from .shortcuts import PromptSession, print_formatted_text, prompt

# Don't forget to update in `docs/conf.py`!
__version__ = "3.0.42"
__version__ = "3.0.43"

assert pep440.match(__version__)

Expand Down

0 comments on commit 4432d62

Please sign in to comment.