Skip to content

Commit

Permalink
Pynvim 0.4.1
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
bfredl committed Jan 25, 2020
1 parent 5a2b552 commit b62662d
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=0, prerelease='')
VERSION = Version(major=0, minor=4, patch=1, prerelease='')
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit b62662d

Please sign in to comment.