Skip to content

Commit

Permalink
pynvim 0.2.6
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
bfredl committed May 1, 2018
1 parent cb7620f commit f0c6ab0
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=5, prerelease='')
VERSION = Version(major=0, minor=2, patch=6, 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 @@ -27,10 +27,10 @@
install_requires.append('greenlet')

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

0 comments on commit f0c6ab0

Please sign in to comment.