From d2cdf5534212a6cfe0685869a4ae8af7ca1298ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Linse?= Date: Sun, 29 Apr 2018 10:23:22 +0200 Subject: [PATCH] Pynvim 0.2.5 This release adds support for Python 3.7 which now is in beta. `async` is a keyword in python3.7, and it should be replaced with `async_` when used as a keyword argument to API methods. `async` is still supported with python 2.7 and 3.6 for the moment, but considered deprecated. Also, integration with the in-process lua interpreter in Nvim is now supported. Changes since 0.2.4: * debcde0 clean up remote object implementation (#313) * e880fe7 Guidelines for local plugin development (#317) * 1ab98e8 Update the working directory on DirChanged for legacy plugins (#296) * d53415d Fix SyntaxError in py3.7: use `async_` instead of `async` (#274) * b65f62d Use `pytest` as `nosetests` are not longer maintained (#266) * d9aed96 Support using lua functions. `buf.update_higlights` as an internal example (#325) --- neovim/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/neovim/__init__.py b/neovim/__init__.py index ce499e64..950b1aee 100644 --- a/neovim/__init__.py +++ b/neovim/__init__.py @@ -21,7 +21,7 @@ 'shutdown_hook', 'attach', 'setup_logging', 'ErrorResponse') -VERSION = Version(major=0, minor=2, patch=4, prerelease='') +VERSION = Version(major=0, minor=2, patch=5, prerelease='') def start_host(session=None): diff --git a/setup.py b/setup.py index efe26f7b..57a2e159 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ install_requires.append('greenlet') setup(name='neovim', - version='0.2.4', + version='0.2.5', description='Python client to neovim', url='http://github.com/neovim/python-client', download_url='https://github.com/neovim/python-client/archive/0.2.4.tar.gz',