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