diff --git a/pynvim/util.py b/pynvim/util.py index 6d280665..f111a398 100644 --- a/pynvim/util.py +++ b/pynvim/util.py @@ -32,4 +32,4 @@ def __eq__(self, other): return self.__dict__ == other.__dict__ -VERSION = Version(major=0, minor=3, patch=1, prerelease='') +VERSION = Version(major=0, minor=3, patch=2, prerelease='') diff --git a/setup.py b/setup.py index e032168b..cd22b201 100644 --- a/setup.py +++ b/setup.py @@ -29,10 +29,10 @@ install_requires.append('greenlet') setup(name='pynvim', - version='0.3.1', + version='0.3.2', description='Python client to neovim', url='http://github.com/neovim/python-client', - download_url='https://github.com/neovim/python-client/archive/0.3.1.tar.gz', + download_url='https://github.com/neovim/python-client/archive/0.3.2.tar.gz', author='Thiago de Arruda', author_email='tpadilha84@gmail.com', license='Apache',