Skip to content

Commit 1ccb2cf

Browse files
committed
neovim python-client 0.1.13
Changes since 0.1.12: * 549f721 Fix spawning a child on python 3.6 * 171d137 Conform to pyuv 1.0 API * 99a2150 use tox for testing and add python 3.6 to test matrix
1 parent 99a2150 commit 1ccb2cf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

neovim/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
'shutdown_hook', 'attach', 'setup_logging', 'ErrorResponse')
2222

2323

24-
VERSION = Version(major=0, minor=1, patch=13, prerelease="dev")
24+
VERSION = Version(major=0, minor=1, patch=13, prerelease="")
2525

2626

2727
def start_host(session=None):

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
install_requires.append('greenlet')
2323

2424
setup(name='neovim',
25-
version='0.1.13dev',
25+
version='0.1.13',
2626
description='Python client to neovim',
2727
url='http://github.com/neovim/python-client',
28-
download_url='https://github.com/neovim/python-client/archive/0.1.12.tar.gz',
28+
download_url='https://github.com/neovim/python-client/archive/0.1.13.tar.gz',
2929
author='Thiago de Arruda',
3030
author_email='tpadilha84@gmail.com',
3131
license='Apache',

0 commit comments

Comments
 (0)