Skip to content

Commit 394a618

Browse files
Release 2.0.10
1 parent a0e5037 commit 394a618

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG

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

4+
2.0.10: 2019-10-03
5+
------------------
6+
7+
Bug fixes:
8+
- Handle HANDLE sizes correctly on windows. This made things break randomly.on
9+
64 bit systems.
10+
- Handle terminal size correctly when reported as (0, 0).
11+
- Fix width computation in progress bar formatter.
12+
- Fix option-up and -down on Mac with iTerm2.
13+
- Removed ctrl-c in confirmation prompt.
14+
15+
New features:
16+
- Added PROMPT_TOOLKIT_NO_CPR=1 environment variable to disable CPR requests.
17+
- Accept a pattern in `WordCompleter`.
18+
19+
420
2.0.9: 2019-02-19
521
-----------------
622

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 = '2.0.9'
54+
version = '2.0.10'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '2.0.9'
56+
release = '2.0.10'
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
@@ -20,7 +20,7 @@
2020
from .shortcuts import PromptSession, print_formatted_text, prompt
2121

2222
# Don't forget to update in `docs/conf.py`!
23-
__version__ = '2.0.9'
23+
__version__ = '2.0.10'
2424

2525
# Version tuple.
2626
VERSION = tuple(__version__.split('.'))

0 commit comments

Comments
 (0)