Skip to content

Commit 81dcfda

Browse files
Release 3.0.44.
1 parent 386477a commit 81dcfda

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

CHANGELOG

+13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
CHANGELOG
22
=========
33

4+
3.0.44: 2024-05-27
5+
------------------
6+
7+
New features:
8+
- Accept `os.PathLike` in `FileHistory` (typing fix).
9+
10+
Fixes:
11+
- Fix memory leak in filters.
12+
- Improve performance of progress bar formatters.
13+
- Fix compatibility when a SIGINT handler is installed by non-Python (Rust, C).
14+
- Limit number of completions in buffer to 10k by default (for performance).
15+
16+
417
3.0.43: 2023-12-13
518
------------------
619

docs/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@
4141

4242
# General information about the project.
4343
project = "prompt_toolkit"
44-
copyright = "2014-2023, Jonathan Slenders"
44+
copyright = "2014-2024, Jonathan Slenders"
4545

4646
# The version info for the project you're documenting, acts as replacement for
4747
# |version| and |release|, also used in various other places throughout the
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = "3.0.43"
51+
version = "3.0.44"
5252
# The full version, including alpha/beta/rc tags.
53-
release = "3.0.43"
53+
release = "3.0.44"
5454

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

src/prompt_toolkit/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
from .shortcuts import PromptSession, print_formatted_text, prompt
2929

3030
# Don't forget to update in `docs/conf.py`!
31-
__version__ = "3.0.43"
31+
__version__ = "3.0.44"
3232

3333
assert pep440.match(__version__)
3434

0 commit comments

Comments
 (0)