Skip to content

Commit f47b846

Browse files
committed
Python-client 0.2.1
Adds compability with msgpack 0.5.2. Changes since 0.2.0: e800c64 discover_runtime_directories refactor (#287) 9cf971f Travis lint refactor (#288) 93e6b5b msgpack-python was renamed to msgpack (#293) 6fc0343 fix for msgpack 0.5.2 (#301)
1 parent 1ec4b20 commit f47b846

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=2, patch=1, prerelease='dev')
24+
VERSION = Version(major=0, minor=2, patch=1, 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.2.1dev',
25+
version='0.2.1',
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.2.0.tar.gz',
28+
download_url='https://github.com/neovim/python-client/archive/0.2.1.tar.gz',
2929
author='Thiago de Arruda',
3030
author_email='tpadilha84@gmail.com',
3131
license='Apache',

0 commit comments

Comments
 (0)