Skip to content

Commit f850e4c

Browse files
Pypi release 0.0.6
1 parent 4990df5 commit f850e4c

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG

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

4+
0.0.6: 2015-06-30
5+
-----------------
6+
7+
Upgrade to prompt_toolkit==0.44 and ptpython==0.19.
8+
9+
New features:
10+
- Added __main__: allow "python -m pyvim".
11+
12+
413
0.0.5: 2015-06-22
514
-----------------
615

pyvim/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from __future__ import unicode_literals
22

3-
__version__ = '0.0.5'
3+
__version__ = '0.0.6'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
long_description=long_description,
2222
packages=find_packages('.'),
2323
install_requires = [
24-
'prompt-toolkit==0.41',
25-
'ptpython==0.15', # For the Python completion (with Jedi.)
24+
'prompt-toolkit==0.44',
25+
'ptpython==0.19', # For the Python completion (with Jedi.)
2626
'pyflakes', # For Python error reporting.
2727
'docopt', # For command line arguments.
2828
],

0 commit comments

Comments
 (0)