Skip to content

Commit a70cdc9

Browse files
committed
Pynvim 0.4.2
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
1 parent 1276622 commit a70cdc9

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=4, patch=1, prerelease='')
42+
VERSION = Version(major=0, minor=4, patch=2, prerelease='')

setup.py

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

3737
setup(name='pynvim',
38-
version='0.4.1',
38+
version='0.4.2',
3939
description='Python client to neovim',
4040
url='http://github.com/neovim/pynvim',
41-
download_url='https://github.com/neovim/pynvim/archive/0.4.1.tar.gz',
41+
download_url='https://github.com/neovim/pynvim/archive/0.4.2.tar.gz',
4242
author='Thiago de Arruda',
4343
author_email='tpadilha84@gmail.com',
4444
license='Apache',

0 commit comments

Comments
 (0)