Skip to content

Commit

Permalink
Release 3.0.47
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanslenders committed Jun 10, 2024
1 parent 67e644b commit 6695411
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
CHANGELOG
=========

3.0.47: 2024-06-10
------------------

New features:
- Allow passing exception classes for `KeyboardInterrupt` and `EOFError` in
`PromptSession`.

Fixes:
- Compute padding parameters for `Box` widget lazily.


3.0.46: 2024-06-04
------------------

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.46"
version = "3.0.47"
# The full version, including alpha/beta/rc tags.
release = "3.0.46"
release = "3.0.47"

# 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 @@ -28,7 +28,7 @@
from .shortcuts import PromptSession, print_formatted_text, prompt

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

assert pep440.match(__version__)

Expand Down

0 comments on commit 6695411

Please sign in to comment.