diff --git a/CHANGELOG b/CHANGELOG index 7da38c1e4..14e3f311b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,14 @@ CHANGELOG ========= +3.0.50: 2025-01-20 +------------------ + +Fixes: +- Fixes non user impacting regression on the output rendering. Don't render + cursor hide/show ANSI escape codes if not needed. + + 3.0.49: 2025-01-20 ------------------ diff --git a/docs/conf.py b/docs/conf.py index e1b47cab9..56c27487b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -54,9 +54,9 @@ # --------------------------------------------------------------------- # Versions. # The short X.Y version. -version = "3.0.49" +version = "3.0.50" # The full version, including alpha/beta/rc tags. -release = "3.0.49" +release = "3.0.50" # 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. diff --git a/src/prompt_toolkit/__init__.py b/src/prompt_toolkit/__init__.py index 43603eba1..94727e7cb 100644 --- a/src/prompt_toolkit/__init__.py +++ b/src/prompt_toolkit/__init__.py @@ -28,7 +28,7 @@ from .shortcuts import PromptSession, print_formatted_text, prompt # Don't forget to update in `docs/conf.py`! -__version__ = "3.0.49" +__version__ = "3.0.50" assert pep440.match(__version__)