Skip to content

Commit 8a63331

Browse files
Release 1.0.8
1 parent 9d84a2a commit 8a63331

File tree

3 files changed

+28
-3
lines changed

3 files changed

+28
-3
lines changed

CHANGELOG

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

4+
1.0.8: 2016-10-16
5+
-----------------
6+
7+
Fixes:
8+
- In 'shortcuts': complete_while_typing was a SimpleFilter, not a CLIFilter.
9+
- Always reset color attributes after rendering.
10+
- Handle bug in Windows when '$TERM' is not defined.
11+
- Ignore errors when calling tcgetattr/tcsetattr.
12+
(This handles the "Inappropriate ioctl for device" crash in some scenarios.)
13+
- Fix for Windows. Correctly recognize all Chinese and Lithuanian characters.
14+
15+
New features:
16+
- Added shift+left/up/down/right keys.
17+
- Small performance optimization in the renderer.
18+
- Small optimization in the posix event loop. Don't call time.time() if we
19+
don't have an inputhook. (Less syscalls.)
20+
- Turned the _max_postpone_until argument of call_from_executor into a float.
21+
(As returned by `time.time`.) This will do less system calls. It's
22+
backwards-incompatible, but this is still a private API, used only by pymux.)
23+
- Added Shift-I/A commands in Vi block selection mode for inserting text at the
24+
beginning of each line of the block.
25+
- Refactoring of the 'selectors' module for the posix event loop. (Reuse the
26+
same selector object in one loop, don't recreate it for each select.)
27+
28+
429
1.0.7: 2016-08-21
530
-----------------
631

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 = '1.0.7'
54+
version = '1.0.8'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '1.0.7'
56+
release = '1.0.8'
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
@@ -19,4 +19,4 @@
1919

2020

2121
# Don't forget to update in `docs/conf.py`!
22-
__version__ = '1.0.7'
22+
__version__ = '1.0.8'

0 commit comments

Comments
 (0)