Skip to content

Commit df8246c

Browse files
Release 3.0.21
1 parent ef64785 commit df8246c

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

Diff for: CHANGELOG

+10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
CHANGELOG
22
=========
33

4+
3.0.21: 2021-10-21
5+
------------------
6+
7+
New features:
8+
- Improved mouse support:
9+
* Support for click-drag, which is useful for selecting text.
10+
* Detect mouse movements when no button is pressed.
11+
- Support for Python 3.10.
12+
13+
414
3.0.20: 2021-08-20
515
------------------
616

Diff for: docs/conf.py

+2-2
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.20"
54+
version = "3.0.21"
5555
# The full version, including alpha/beta/rc tags.
56-
release = "3.0.20"
56+
release = "3.0.21"
5757

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

Diff for: prompt_toolkit/__init__.py

+1-1
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.20"
21+
__version__ = "3.0.21"
2222

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

0 commit comments

Comments
 (0)