Skip to content

Commit

Permalink
Pynvim 0.4.2
Browse files Browse the repository at this point in the history
Changes since 0.4.1:

- 1276622 Refactor: IOError was deprecated. Replace with OSError
- a5446ce refactor: Reduce usage of deprecated imp module
- 605ffda Modify all imports in the repository to absolute imports
- d9ce0b5 Set unicode_errors in Unpacker
- 2cbc135 import vim module by default
  • Loading branch information
jamessan committed Sep 15, 2020
1 parent 1276622 commit a70cdc9
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=4, patch=1, prerelease='')
VERSION = Version(major=0, minor=4, patch=2, prerelease='')
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@
install_requires.append('greenlet')

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

0 comments on commit a70cdc9

Please sign in to comment.