diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 922d4770..faed6a46 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 6.0.0rc +current_version = 6.0.0 commit = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P.*))? serialize = diff --git a/setup.py b/setup.py index c65473bd..2ffaf4ed 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup # Do not update the version manually - it is managed by `bumpversion`. -version = '6.0.0rc' +version = '6.0.0' requirements = [ diff --git a/src/pydocstyle/utils.py b/src/pydocstyle/utils.py index 81db2c93..5c6471e3 100644 --- a/src/pydocstyle/utils.py +++ b/src/pydocstyle/utils.py @@ -6,7 +6,7 @@ from typing import Any, Iterable, Tuple # Do not update the version manually - it is managed by `bumpversion`. -__version__ = '6.0.0rc' +__version__ = '6.0.0' log = logging.getLogger(__name__) #: Regular expression for stripping non-alphanumeric characters