Skip to content

Commit 48c135c

Browse files
Release 3.0.47
1 parent 67e644b commit 48c135c

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

Diff for: CHANGELOG

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

4+
3.0.47: 2024-06-10
5+
------------------
6+
7+
New features:
8+
- Allow passing exception classes for `KeyboardInterrupt` and `EOFError` in
9+
PromptSession.
10+
11+
Fixes:
12+
- Compute padding parameters for `Box` widget lazily.
13+
14+
415
3.0.46: 2024-06-04
516
------------------
617

Diff for: 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.46"
51+
version = "3.0.47"
5252
# The full version, including alpha/beta/rc tags.
53-
release = "3.0.46"
53+
release = "3.0.47"
5454

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

Diff for: src/prompt_toolkit/__init__.py

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

3030
# Don't forget to update in `docs/conf.py`!
31-
__version__ = "3.0.46"
31+
__version__ = "3.0.47"
3232

3333
assert pep440.match(__version__)
3434

0 commit comments

Comments
 (0)