From 960df477c31adf53a3fff98a5c212c71fbfd7a3e Mon Sep 17 00:00:00 2001 From: Jonathan Slenders Date: Tue, 28 Feb 2023 09:41:48 +0000 Subject: [PATCH] Release 3.0.38 --- CHANGELOG | 11 +++++++++++ docs/conf.py | 4 ++-- src/prompt_toolkit/__init__.py | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 94314177c..f3794a8a3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,17 @@ CHANGELOG ========= +3.0.38: 2023-02-28 +------------------ + +Fixes: +- Fix regression in filters. (Use of `WeakValueDictionary` caused filters to + not be cached). + +New features: +- Use 24-bit true color now by default on Windows 10/11. + + 3.0.37: 2023-02-21 ------------------ diff --git a/docs/conf.py b/docs/conf.py index 42fe2ec0c..08b32215e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,9 +50,9 @@ # built documents. # # The short X.Y version. -version = "3.0.37" +version = "3.0.38" # The full version, including alpha/beta/rc tags. -release = "3.0.37" +release = "3.0.38" # 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 4f671037b..bbe820bee 100644 --- a/src/prompt_toolkit/__init__.py +++ b/src/prompt_toolkit/__init__.py @@ -27,7 +27,7 @@ from .shortcuts import PromptSession, print_formatted_text, prompt # Don't forget to update in `docs/conf.py`! -__version__ = "3.0.37" +__version__ = "3.0.38" assert pep440.match(__version__)