Skip to content

Commit e51a310

Browse files
committed
Pynvim 0.3.0
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
1 parent 0852da8 commit e51a310

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

neovim/util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ def __eq__(self, other):
3232
return self.__dict__ == other.__dict__
3333

3434

35-
VERSION = Version(major=0, minor=2, patch=6, prerelease='')
35+
VERSION = Version(major=0, minor=3, patch=0, prerelease='')

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@
2929
install_requires.append('greenlet')
3030

3131
setup(name='neovim',
32-
version='0.2.6',
32+
version='0.3.0',
3333
description='Python client to neovim',
3434
url='http://github.com/neovim/python-client',
35-
download_url='https://github.com/neovim/python-client/archive/0.2.6.tar.gz',
35+
download_url='https://github.com/neovim/python-client/archive/0.3.0.tar.gz',
3636
author='Thiago de Arruda',
3737
author_email='[email protected]',
3838
license='Apache',

0 commit comments

Comments
 (0)