Skip to content

Commit eced76b

Browse files
Release 3.0.15
1 parent c722896 commit eced76b

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

CHANGELOG

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
CHANGELOG
22
=========
33

4+
3.0.15: 2021-02-10
5+
------------------
6+
7+
Fixes:
8+
- Set stdout blocking when writing in vt100 output. Fixes an issue when uvloop
9+
is used and big amounts of text are written.
10+
- Guarantee height of at least 1 for both labels and text areas.
11+
- In the `Window` rendering, take `dont_extend_width`/`dont_extend_height` into
12+
account. This fixes issues where one window is enlarged unexpectedly because
13+
it's bundled with another window in a `HSplit`/`VSplit`, but with different
14+
width/height.
15+
- Don't handle `SIGWINCH` in progress bar anymore. (The UI runs in another
16+
thread, and we have terminal size polling now).
17+
- Fix several thread safety issues and a race condition in the progress bar.
18+
- Fix thread safety issues in `Application.invalidate()`. (Fixes a
19+
`RuntimeError` in some situations when using progress bars.)
20+
- Fix handling of mouse events on Windows if we have a Windows 10 console with
21+
ANSI support.
22+
- Disable `QUICK_EDIT_MODE` on Windows 10 when mouse support is requested.
23+
24+
425
3.0.14: 2021-01-24
526
------------------
627

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = "3.0.14"
54+
version = "3.0.15"
5555
# The full version, including alpha/beta/rc tags.
56-
release = "3.0.14"
56+
release = "3.0.15"
5757

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

prompt_toolkit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from .shortcuts import PromptSession, print_formatted_text, prompt
1919

2020
# Don't forget to update in `docs/conf.py`!
21-
__version__ = "3.0.14"
21+
__version__ = "3.0.15"
2222

2323
# Version tuple.
2424
VERSION = tuple(__version__.split("."))

0 commit comments

Comments
 (0)