Skip to content

Commit 8db551c

Browse files
committed
Pynvim 0.3.2
Cleanup after the `pynvim` rename, as well as a few bugfixes and improvements. Changes since 0.3.1: - bfb5c26 support `del vim.current.line` - 408025b Handle `nvim_error_event` (errors from async requests) - 14ab154 Don't crash when subprocesses write to stdout - c37b4ed 22e5919 Continue `pynvim` rename - 2aa29f9 test with Python 3.7 in Travis.
1 parent f7516e2 commit 8db551c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pynvim/util.py

Lines changed: 1 addition & 1 deletion
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=3, patch=1, prerelease='')
35+
VERSION = Version(major=0, minor=3, patch=2, prerelease='')

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@
2929
install_requires.append('greenlet')
3030

3131
setup(name='pynvim',
32-
version='0.3.1',
32+
version='0.3.2',
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.3.1.tar.gz',
35+
download_url='https://github.com/neovim/python-client/archive/0.3.2.tar.gz',
3636
author='Thiago de Arruda',
3737
author_email='tpadilha84@gmail.com',
3838
license='Apache',

0 commit comments

Comments
 (0)