Skip to content

Commit 960df47

Browse files
Release 3.0.38
1 parent 56abcd9 commit 960df47

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
CHANGELOG
22
=========
33

4+
3.0.38: 2023-02-28
5+
------------------
6+
7+
Fixes:
8+
- Fix regression in filters. (Use of `WeakValueDictionary` caused filters to
9+
not be cached).
10+
11+
New features:
12+
- Use 24-bit true color now by default on Windows 10/11.
13+
14+
415
3.0.37: 2023-02-21
516
------------------
617

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
# built documents.
5151
#
5252
# The short X.Y version.
53-
version = "3.0.37"
53+
version = "3.0.38"
5454
# The full version, including alpha/beta/rc tags.
55-
release = "3.0.37"
55+
release = "3.0.38"
5656

5757
# The language for content autogenerated by Sphinx. Refer to documentation
5858
# for a list of supported languages.

src/prompt_toolkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from .shortcuts import PromptSession, print_formatted_text, prompt
2828

2929
# Don't forget to update in `docs/conf.py`!
30-
__version__ = "3.0.37"
30+
__version__ = "3.0.38"
3131

3232
assert pep440.match(__version__)
3333

0 commit comments

Comments
 (0)