Skip to content

Commit decfbe6

Browse files
Release 0.37
1 parent 7685759 commit decfbe6

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

CHANGELOG

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

4+
0.37: 2017-03-26
5+
----------------
6+
7+
Fixes:
8+
- Display 'VISUAL BLOCK' and 'INSERT' when we're in these modes.
9+
- Handle ValueError in PythonValidator. Python2 raises ValueError if the input
10+
contains an invalid escape sequence.
11+
- Use load_key_bindings instead of KeyBindingsManager. (For the latest
12+
prompt_toolkit.)
13+
- Set 'reverse_vi_search_direction'. (Search backwards when '/' was pressed in
14+
Vi mode.)
15+
- Check for symlink when creating config dir.
16+
- Make default config dir filepath OS independent.
17+
- Remove minor python version in entry point.
18+
- Fixed .ptpython directory creation in run_ptpython.
19+
20+
New features:
21+
- Also accept Ctrl-D for quitting the 'exit confirmation' dialog.
22+
23+
Requires prompt_toolkit 1.0.14.
24+
25+
426
0.36: 2016-10-16
527
----------------
628

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
setup(
1515
name='ptpython',
1616
author='Jonathan Slenders',
17-
version='0.36',
17+
version='0.37',
1818
url='https://github.com/jonathanslenders/ptpython',
1919
description='Python REPL build on top of prompt_toolkit',
2020
long_description=long_description,
2121
packages=find_packages('.'),
2222
install_requires = [
2323
'docopt',
2424
'jedi>=0.9.0',
25-
'prompt_toolkit>=1.0.0,<2.0.0',
25+
'prompt_toolkit>=1.0.14,<2.0.0',
2626
'pygments',
2727
],
2828
entry_points={

0 commit comments

Comments
 (0)