Skip to content

Commit 165258d

Browse files
Release 3.0.50 (#1969)
1 parent 76957c8 commit 165258d

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.50: 2025-01-20
5+
------------------
6+
7+
Fixes:
8+
- Fixes non user impacting regression on the output rendering. Don't render
9+
cursor hide/show ANSI escape codes if not needed.
10+
11+
412
3.0.49: 2025-01-20
513
------------------
614

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@
5454
# ---------------------------------------------------------------------
5555
# Versions.
5656
# The short X.Y version.
57-
version = "3.0.49"
57+
version = "3.0.50"
5858
# The full version, including alpha/beta/rc tags.
59-
release = "3.0.49"
59+
release = "3.0.50"
6060
# The URL pattern to match releases to ReadTheDocs URLs.
6161
docs_fmt_url = "https://python-prompt-toolkit.readthedocs.io/en/{release}/"
6262
# The list of releases to include in the dropdown.

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.49"
31+
__version__ = "3.0.50"
3232

3333
assert pep440.match(__version__)
3434

0 commit comments

Comments
 (0)