Skip to content

Commit

Permalink
Release 2.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanslenders committed Oct 3, 2019
1 parent a0e5037 commit 394a618
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
CHANGELOG
=========

2.0.10: 2019-10-03
------------------

Bug fixes:
- Handle HANDLE sizes correctly on windows. This made things break randomly.on
64 bit systems.
- Handle terminal size correctly when reported as (0, 0).
- Fix width computation in progress bar formatter.
- Fix option-up and -down on Mac with iTerm2.
- Removed ctrl-c in confirmation prompt.

New features:
- Added PROMPT_TOOLKIT_NO_CPR=1 environment variable to disable CPR requests.
- Accept a pattern in `WordCompleter`.


2.0.9: 2019-02-19
-----------------

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

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion prompt_toolkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from .shortcuts import PromptSession, print_formatted_text, prompt

# Don't forget to update in `docs/conf.py`!
__version__ = '2.0.9'
__version__ = '2.0.10'

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

0 comments on commit 394a618

Please sign in to comment.