Skip to content

Commit b62662d

Browse files
committed
Pynvim 0.4.1
Logging will be disabled on release tarballs and pip packages for performance reasons. Use `scripts/enable_log_statements.sh` and `scripts/disable_log_statements.sh` to toggle the availability of logging. Changes since 0.4.0: - 09bba08 remove scrutinizer - f048531 make pytest_runner an optional dependency - 5b50ce9 fix missing self.name for nvim_error_event - 175a2cc Test with python 3.8 - 5a2b552 fix the disable logging script.
1 parent 5a2b552 commit b62662d

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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
setup(name='pynvim',
3838
version='0.4.0',
3939
description='Python client to neovim',
40-
url='http://github.com/neovim/python-client',
41-
download_url='https://github.com/neovim/python-client/archive/0.4.0.tar.gz',
40+
url='http://github.com/neovim/pynvim',
41+
download_url='https://github.com/neovim/pynvim/archive/0.4.1.tar.gz',
4242
author='Thiago de Arruda',
4343
author_email='tpadilha84@gmail.com',
4444
license='Apache',

0 commit comments

Comments
 (0)