File tree Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
3
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
+
4
20
2.0.9: 2019-02-19
5
21
-----------------
6
22
Original file line number Diff line number Diff line change 51
51
# built documents.
52
52
#
53
53
# The short X.Y version.
54
- version = '2.0.9 '
54
+ version = '2.0.10 '
55
55
# The full version, including alpha/beta/rc tags.
56
- release = '2.0.9 '
56
+ release = '2.0.10 '
57
57
58
58
# The language for content autogenerated by Sphinx. Refer to documentation
59
59
# for a list of supported languages.
Original file line number Diff line number Diff line change 20
20
from .shortcuts import PromptSession , print_formatted_text , prompt
21
21
22
22
# Don't forget to update in `docs/conf.py`!
23
- __version__ = '2.0.9 '
23
+ __version__ = '2.0.10 '
24
24
25
25
# Version tuple.
26
26
VERSION = tuple (__version__ .split ('.' ))
You can’t perform that action at this time.
0 commit comments