Skip to content

Commit

Permalink
Pynvim 0.3.0
Browse files Browse the repository at this point in the history
Requires Nvim 0.3.0 or later.

Changes since 0.2.6:

    5b69f54 script host: Use the correct interface for a path entry finder
    82b0109 api: implement Remote.__repr__
    c784927 event loop: Enable asyncio on windows again
    59112c6 host: Add client info (for nvim_list_chans())
    d2bf46f host: make imports thread-safe
  • Loading branch information
bfredl committed Nov 3, 2018
1 parent 0852da8 commit e51a310
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion neovim/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ def __eq__(self, other):
return self.__dict__ == other.__dict__


VERSION = Version(major=0, minor=2, patch=6, prerelease='')
VERSION = Version(major=0, minor=3, patch=0, prerelease='')
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
install_requires.append('greenlet')

setup(name='neovim',
version='0.2.6',
version='0.3.0',
description='Python client to neovim',
url='http://github.com/neovim/python-client',
download_url='https://github.com/neovim/python-client/archive/0.2.6.tar.gz',
download_url='https://github.com/neovim/python-client/archive/0.3.0.tar.gz',
author='Thiago de Arruda',
author_email='[email protected]',
license='Apache',
Expand Down

0 comments on commit e51a310

Please sign in to comment.