Skip to content

Commit

Permalink
Release 3.0.34
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanslenders committed Dec 6, 2022
1 parent 6b4af4e commit 1ff6551
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG
@@ -1,6 +1,18 @@
CHANGELOG
=========

3.0.34: 2022-12-06
------------------

Fixes:
- Improve completion performance in various places.
- Improve renderer performance.
- Handle `KeyboardInterrupt` when the stacktrace of an unhandled error is
displayed.
- Use correct event loop in `Application.create_background_task()`.
- Fix `show_cursor` attribute in `ScrollablePane`.


3.0.33: 2022-11-21
------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -50,9 +50,9 @@
# built documents.
#
# The short X.Y version.
version = "3.0.33"
version = "3.0.34"
# The full version, including alpha/beta/rc tags.
release = "3.0.33"
release = "3.0.34"

# 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
Expand Up @@ -18,7 +18,7 @@
from .shortcuts import PromptSession, print_formatted_text, prompt

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

# Version tuple.
VERSION = tuple(__version__.split("."))
Expand Down

0 comments on commit 1ff6551

Please sign in to comment.