Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
CHANGELOG
=========

3.0.52: 2025-08-27
------------------

New features:
- Add `choice()` shortcut for selecting an option amongst a list of choices
(see documentation for examples).
- Add support for ANSI dim text formatting.
- Add `frame=...` option for `prompt()` and `choice()` shortcuts to allow for
displaying a frame around the input prompt.

Fixes:
- Fix button width when non English characters are displayed.
- Implement flushing in Windows VT100 input.
- Fix signal handling for GraalPy.
- Fix handling of zero sized dimensions.

3.0.51: 2025-04-15
------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
# ---------------------------------------------------------------------
# Versions.
# The short X.Y version.
version = "3.0.51"
version = "3.0.52"
# The full version, including alpha/beta/rc tags.
release = "3.0.51"
release = "3.0.52"
# The URL pattern to match releases to ReadTheDocs URLs.
docs_fmt_url = "https://python-prompt-toolkit.readthedocs.io/en/{release}/"
# The list of releases to include in the dropdown.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "prompt_toolkit"
version = "3.0.51" # Also update in `docs/conf.py`.
version = "3.0.52" # Also update in `docs/conf.py`.
description="Library for building powerful interactive command lines in Python"
readme = "README.rst"
authors = [{ name = "Jonathan Slenders" }]
Expand Down