From 98659afe4de61732caa6987c3b6d7935235a0fad Mon Sep 17 00:00:00 2001 From: Jonathan Slenders Date: Tue, 4 Jun 2024 14:45:44 +0000 Subject: [PATCH] Release 3.0.46 --- CHANGELOG | 7 +++++++ docs/conf.py | 4 ++-- src/prompt_toolkit/__init__.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) 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__)