Skip to content

Commit 114b0f2

Browse files
Release 1.0.10
1 parent 6ed2477 commit 114b0f2

File tree

3 files changed

+44
-3
lines changed

3 files changed

+44
-3
lines changed

CHANGELOG

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

4+
1.0.10: 2017-01-30
5+
------------------
6+
7+
Fixes:
8+
- Fixed the `NoConsoleScreenBuffer` error that appeared on some 64bit Python
9+
versions.
10+
- Fix mixup in the mapping from ANSI color names for vt100 output.
11+
12+
New features:
13+
- Added a `reverse_vi_search_direction` option.
14+
- Handle Ctrl-Left/Right in rxvt.
15+
- Implemented difference between `backward-kill-word` and `unix-word-rubout`.
16+
- Implementation of the Emacs kill-ring (yank-pop command).
17+
- Take a 'file' argument in 'print_tokens'.
18+
- Implemented the `operate-and-get-next` command, bound to C-O in Emacs mode.
19+
- Added multiple named commands:
20+
* Added `insert-comment` command, bound to M-#.
21+
* Added `vi-editing-mode` and `emacs-editing-mode` commands.
22+
* Added `prefix-meta` command.
23+
* Added `edit-and-execute` command.
24+
* Added `complete`/`menu_complete`/`menu-complete-backward` commands.
25+
* Added `quoted-insert` command.
26+
- Take $VISUAL into account.
27+
- Display a quoted inserted using the `^` character, just like Vi does.
28+
- Implemented keyboard macros. (Like Readline.)
29+
- Extracted the Vi `create_operator_decorator` and
30+
`create_text_object_decorator` functions. (This makes it easier to implement
31+
custom Vi bindings.)
32+
- Pass `raw=True` to the `stdout_context` in `prompt_toolkit.shortcuts`.
33+
- Added `Buffer.validation_state`. (Don't call the validator again if the input
34+
didn't change.)
35+
36+
Changes:
37+
- Refactoring of the key bindings.
38+
* All the load functions now create a new `Registry` object.
39+
* Added `MergedRegistry` and `ConditionalRegistry`.
40+
* Added `prompt_toolkit.key_binding.defaults` for loading the default key
41+
bindings.
42+
* `prompt_toolkit.key_binding.manager` has been deprecated.
43+
44+
445
1.0.9: 2016-11-07
546
-----------------
647

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

2020

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

0 commit comments

Comments
 (0)