Skip to content

Commit f0c6ab0

Browse files
committed
pynvim 0.2.6
This is a bugfix release. Changes since 0.2.5: * 0e4f246 Fix race in script_host that could cause first `:python` command to fail (#338)
1 parent cb7620f commit f0c6ab0

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=5, prerelease='')
24+
VERSION = Version(major=0, minor=2, patch=6, 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
@@ -27,10 +27,10 @@
2727
install_requires.append('greenlet')
2828

2929
setup(name='neovim',
30-
version='0.2.5',
30+
version='0.2.6',
3131
description='Python client to neovim',
3232
url='http://github.com/neovim/python-client',
33-
download_url='https://github.com/neovim/python-client/archive/0.2.4.tar.gz',
33+
download_url='https://github.com/neovim/python-client/archive/0.2.6.tar.gz',
3434
author='Thiago de Arruda',
3535
author_email='tpadilha84@gmail.com',
3636
license='Apache',

0 commit comments

Comments
 (0)