Skip to content

Commit 6bfb4b0

Browse files
committed
python-client 0.2.0
Brings the client up-to-date with Nvim 0.2.1 Changes since 0.1.13: * a2e1169 Fix tests on windows (#201) * 9a0e729 Fix an indexing bug when setting lines in a Range object (#270) * 4abd5d0 Documentation update (#272) * a703b47 Make sure logging always uses UTF-8 regardless of locale (#276) * 68aa352 Add argument to allow nested notification handlers (#262)
1 parent 6a7139b commit 6bfb4b0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

neovim/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
'shutdown_hook', 'attach', 'setup_logging', 'ErrorResponse')
2222

2323

24-
VERSION = Version(major=0, minor=1, patch=14, prerelease="dev")
24+
VERSION = Version(major=0, minor=2, patch=0, prerelease='')
2525

2626

2727
def start_host(session=None):

setup.py

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

2424
setup(name='neovim',
25-
version='0.1.14dev',
25+
version='0.2.0',
2626
description='Python client to neovim',
2727
url='http://github.com/neovim/python-client',
28-
download_url='https://github.com/neovim/python-client/archive/0.1.13.tar.gz',
28+
download_url='https://github.com/neovim/python-client/archive/0.2.0.tar.gz',
2929
author='Thiago de Arruda',
3030
author_email='tpadilha84@gmail.com',
3131
license='Apache',

0 commit comments

Comments
 (0)