File tree 3 files changed +17
-4
lines changed
3 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
3
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
+
4
17
3.0.43: 2023-12-13
5
18
------------------
6
19
Original file line number Diff line number Diff line change 41
41
42
42
# General information about the project.
43
43
project = "prompt_toolkit"
44
- copyright = "2014-2023 , Jonathan Slenders"
44
+ copyright = "2014-2024 , Jonathan Slenders"
45
45
46
46
# The version info for the project you're documenting, acts as replacement for
47
47
# |version| and |release|, also used in various other places throughout the
48
48
# built documents.
49
49
#
50
50
# The short X.Y version.
51
- version = "3.0.43 "
51
+ version = "3.0.44 "
52
52
# The full version, including alpha/beta/rc tags.
53
- release = "3.0.43 "
53
+ release = "3.0.44 "
54
54
55
55
# The language for content autogenerated by Sphinx. Refer to documentation
56
56
# for a list of supported languages.
Original file line number Diff line number Diff line change 28
28
from .shortcuts import PromptSession , print_formatted_text , prompt
29
29
30
30
# Don't forget to update in `docs/conf.py`!
31
- __version__ = "3.0.43 "
31
+ __version__ = "3.0.44 "
32
32
33
33
assert pep440 .match (__version__ )
34
34
You can’t perform that action at this time.
0 commit comments