diff --git a/docs/source/conf.py b/docs/source/conf.py index 04e20ba50..e3045d159 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.3-dev' +version = __version__ = '0.8.3' # The full version, including alpha/beta/rc tags. -release = __version__ = '0.8.3-dev' +release = __version__ = '0.8.3' # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/neo/__init__.py b/neo/__init__.py index a29d81853..b4e35405f 100644 --- a/neo/__init__.py +++ b/neo/__init__.py @@ -1 +1 @@ -__version__ = '0.8.3-dev' +__version__ = '0.8.3' diff --git a/setup.cfg b/setup.cfg index 60a211bad..8f4890b08 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.3-dev +current_version = 0.8.3 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/setup.py b/setup.py index 68af542b9..0dba568ea 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( name='neo-python', python_requires='>=3.6', - version='0.8.3-dev', + version='0.8.3', description="Python Node and SDK for the NEO blockchain", long_description=readme, author="Thomas Saunders",