diff --git a/neovim/__init__.py b/neovim/__init__.py index 4d2caded..3e795f16 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=1, prerelease='dev') +VERSION = Version(major=0, minor=2, patch=1, prerelease='') def start_host(session=None): diff --git a/setup.py b/setup.py index 4a733e99..7dd4f365 100644 --- a/setup.py +++ b/setup.py @@ -22,10 +22,10 @@ install_requires.append('greenlet') setup(name='neovim', - version='0.2.1dev', + version='0.2.1', description='Python client to neovim', url='http://github.com/neovim/python-client', - download_url='https://github.com/neovim/python-client/archive/0.2.0.tar.gz', + download_url='https://github.com/neovim/python-client/archive/0.2.1.tar.gz', author='Thiago de Arruda', author_email='tpadilha84@gmail.com', license='Apache',