Skip to content

Commit

Permalink
Python-client 0.2.1
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
bfredl committed Feb 2, 2018
1 parent 1ec4b20 commit f47b846
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion neovim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
'shutdown_hook', 'attach', 'setup_logging', 'ErrorResponse')


VERSION = Version(major=0, minor=2, patch=1, prerelease='dev')
VERSION = Version(major=0, minor=2, patch=1, prerelease='')


def start_host(session=None):
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
install_requires.append('greenlet')

setup(name='neovim',
version='0.2.1dev',
version='0.2.1',
description='Python client to neovim',
url='http://github.com/neovim/python-client',
download_url='https://github.com/neovim/python-client/archive/0.2.0.tar.gz',
download_url='https://github.com/neovim/python-client/archive/0.2.1.tar.gz',
author='Thiago de Arruda',
author_email='tpadilha84@gmail.com',
license='Apache',
Expand Down

0 comments on commit f47b846

Please sign in to comment.