Skip to content

Commit a5ee340

Browse files
committed
Pynvim 0.4.0
Changes since 0.3.2: - 2a31195 Update docs/tests to use `--headless` when needed - 1d121e0 Update tests for new global/local option behavior - 6310063 session: set client info (not only for host) - 58ff62f python2 compat: fix buffer inequality - a63cddb ci: fix coverage reporting - f4f3bf5 api: key deletion; use KeyError for maps (if_python compat) - d3c389f host: do not run __init__ in plugin until the plugin is invoked
1 parent 8da0b84 commit a5ee340

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
@@ -39,4 +39,4 @@ def get_client_info(kind, type_, method_spec):
3939
return (name, VERSION.__dict__, type_, method_spec, attributes)
4040

4141

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

setup.py

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

3535
setup(name='pynvim',
36-
version='0.3.2',
36+
version='0.4.0',
3737
description='Python client to neovim',
3838
url='http://github.com/neovim/python-client',
39-
download_url='https://github.com/neovim/python-client/archive/0.3.2.tar.gz',
39+
download_url='https://github.com/neovim/python-client/archive/0.4.0.tar.gz',
4040
author='Thiago de Arruda',
4141
author_email='[email protected]',
4242
license='Apache',

0 commit comments

Comments
 (0)