diff --git a/CHANGELOG b/CHANGELOG index 006baccd1..fa02b8568 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,13 @@ CHANGELOG ========= +3.0.46: 2024-06-04 +------------------ + +Fixes: +- Fix pytest capsys fixture compatibility. + + 3.0.45: 2024-05-28 ------------------ diff --git a/docs/conf.py b/docs/conf.py index 21062a7d6..dbbcecc09 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = "3.0.45" +version = "3.0.46" # The full version, including alpha/beta/rc tags. -release = "3.0.45" +release = "3.0.46" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/src/prompt_toolkit/__init__.py b/src/prompt_toolkit/__init__.py index 7b3e9bbe6..9f194f1b4 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.45" +__version__ = "3.0.46" assert pep440.match(__version__)