diff --git a/neovim/__init__.py b/neovim/__init__.py index 09e51553..b2bbbf00 100644 --- a/neovim/__init__.py +++ b/neovim/__init__.py @@ -21,7 +21,7 @@ 'shutdown_hook', 'attach', 'setup_logging', 'ErrorResponse') -VERSION = Version(major=0, minor=1, patch=14, prerelease="dev") +VERSION = Version(major=0, minor=2, patch=0, prerelease='') def start_host(session=None): diff --git a/setup.py b/setup.py index 4af8bc9f..f81a7644 100644 --- a/setup.py +++ b/setup.py @@ -22,10 +22,10 @@ install_requires.append('greenlet') setup(name='neovim', - version='0.1.14dev', + version='0.2.0', description='Python client to neovim', url='http://github.com/neovim/python-client', - download_url='https://github.com/neovim/python-client/archive/0.1.13.tar.gz', + download_url='https://github.com/neovim/python-client/archive/0.2.0.tar.gz', author='Thiago de Arruda', author_email='tpadilha84@gmail.com', license='Apache',