From b62662d946c1def525198c1785f1dd9ea81388bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Linse?= Date: Sat, 25 Jan 2020 10:16:18 +0100 Subject: [PATCH] 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. --- pynvim/util.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pynvim/util.py b/pynvim/util.py index 535c3494..cd19be16 100644 --- a/pynvim/util.py +++ b/pynvim/util.py @@ -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=0, prerelease='') +VERSION = Version(major=0, minor=4, patch=1, prerelease='') diff --git a/setup.py b/setup.py index 5ee9cd74..a658ac08 100644 --- a/setup.py +++ b/setup.py @@ -37,8 +37,8 @@ setup(name='pynvim', 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.4.0.tar.gz', + url='http://github.com/neovim/pynvim', + download_url='https://github.com/neovim/pynvim/archive/0.4.1.tar.gz', author='Thiago de Arruda', author_email='tpadilha84@gmail.com', license='Apache',