Skip to content

Commit

Permalink
Release 3.0.33
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanslenders committed Nov 21, 2022
1 parent 427f4bc commit 2d816ff
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
CHANGELOG
=========

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

Fixes:
- Improve termination of `Application`. Don't suppress `CancelledError`. This
fixes a race condition when an `Application` gets cancelled while we're
waiting for the background tasks to complete.
- Fixed typehint for `OneStyleAndTextTuple`.
- Small bugfix in `CombinedRegistry`. Fixed missing `@property`.


3.0.32: 2022-11-03
------------------

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

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

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

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

0 comments on commit 2d816ff

Please sign in to comment.