Skip to content

Commit

Permalink
Pynvim 0.4.0
Browse files Browse the repository at this point in the history
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
  • Loading branch information
bfredl committed Nov 16, 2019
1 parent 8da0b84 commit a5ee340
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pynvim/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ def get_client_info(kind, type_, method_spec):
return (name, VERSION.__dict__, type_, method_spec, attributes)


VERSION = Version(major=0, minor=3, patch=2, prerelease='')
VERSION = Version(major=0, minor=4, patch=0, prerelease='')
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
install_requires.append('greenlet')

setup(name='pynvim',
version='0.3.2',
version='0.4.0',
description='Python client to neovim',
url='http://github.com/neovim/python-client',
download_url='https://github.com/neovim/python-client/archive/0.3.2.tar.gz',
download_url='https://github.com/neovim/python-client/archive/0.4.0.tar.gz',
author='Thiago de Arruda',
author_email='[email protected]',
license='Apache',
Expand Down

0 comments on commit a5ee340

Please sign in to comment.