Skip to content

Commit

Permalink
Release 3.0.44.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanslenders committed May 27, 2024
1 parent 386477a commit 81dcfda
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
CHANGELOG
=========

3.0.44: 2024-05-27
------------------

New features:
- Accept `os.PathLike` in `FileHistory` (typing fix).

Fixes:
- Fix memory leak in filters.
- Improve performance of progress bar formatters.
- Fix compatibility when a SIGINT handler is installed by non-Python (Rust, C).
- Limit number of completions in buffer to 10k by default (for performance).


3.0.43: 2023-12-13
------------------

Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,16 @@

# General information about the project.
project = "prompt_toolkit"
copyright = "2014-2023, Jonathan Slenders"
copyright = "2014-2024, Jonathan Slenders"

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = "3.0.43"
version = "3.0.44"
# The full version, including alpha/beta/rc tags.
release = "3.0.43"
release = "3.0.44"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion src/prompt_toolkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from .shortcuts import PromptSession, print_formatted_text, prompt

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

assert pep440.match(__version__)

Expand Down

0 comments on commit 81dcfda

Please sign in to comment.