diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8c863e40..d0904d4a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.0rc18 +current_version = 2.0.0 commit = True tag = True parse = (?P\d+)\.(?P\d+)(\.(?P\d+))(\-?((rc)?(?P\d+))?) diff --git a/docs/source/conf.py b/docs/source/conf.py index b4ebf3ea..8754bd4d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,7 +25,7 @@ # The short X.Y version version = u'2.0' # The full version, including alpha/beta/rc tags -release = u'2.0.0rc18' +release = u'2.0.0' # -- General configuration --------------------------------------------------- diff --git a/niapy/__init__.py b/niapy/__init__.py index cc10776e..072ba586 100644 --- a/niapy/__init__.py +++ b/niapy/__init__.py @@ -7,6 +7,6 @@ __all__ = ["algorithms", "problems", "util", "task", "Runner"] __project__ = "NiaPy" -__version__ = "2.0.0rc18" +__version__ = "2.0.0" VERSION = "{0} v{1}".format(__project__, __version__) diff --git a/setup.py b/setup.py index d9e987bc..0a841a61 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ def build_description(): setuptools.setup( name=PACKAGE_NAME, - version="2.0.0rc18", + version="2.0.0", description=""" Python micro framework for building nature-inspired algorithms. """,