Skip to content

Commit

Permalink
Pynvim 0.3.2
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
bfredl committed Jan 20, 2019
1 parent f7516e2 commit 8db551c
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 @@ -32,4 +32,4 @@ def __eq__(self, other):
return self.__dict__ == other.__dict__


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

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

0 comments on commit 8db551c

Please sign in to comment.