diff --git a/docs/source/conf.py b/docs/source/conf.py index d84ac82c7..7aad0502d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -80,9 +80,9 @@ def __getattr__(cls, name): # built documents. # # The short X.Y version. -version = __version__ = '0.8.2-dev' +version = __version__ = '0.8.2' # The full version, including alpha/beta/rc tags. -release = __version__ = '0.8.2-dev' +release = __version__ = '0.8.2' # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/neo/__init__.py b/neo/__init__.py index 280188f9a..4ca39e7ce 100644 --- a/neo/__init__.py +++ b/neo/__init__.py @@ -1 +1 @@ -__version__ = '0.8.2-dev' +__version__ = '0.8.2' diff --git a/setup.cfg b/setup.cfg index 0738e2133..7575f8af3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.2-dev +current_version = 0.8.2 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/setup.py b/setup.py index c6ba99707..e7be7b288 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( name='neo-python', python_requires='>=3.6', - version='0.8.2-dev', + version='0.8.2', description="Python Node and SDK for the NEO blockchain", long_description=readme, author="Thomas Saunders",