diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 13b672de429..d0b647343a8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.180.0 +current_version = 2.180.1 commit = True tag = True tag_message = diff --git a/pyproject.toml b/pyproject.toml index 997cd5814aa..ceb3873d8a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta' [project] name = 'synapse' -version = '2.180.0' +version = '2.180.1' authors = [ { name = 'The Vertex Project LLC', email = 'root@vertex.link'}, ] diff --git a/synapse/lib/version.py b/synapse/lib/version.py index 111a3197a67..7d1f3ce4a74 100644 --- a/synapse/lib/version.py +++ b/synapse/lib/version.py @@ -223,6 +223,6 @@ def reqVersion(valu, reqver, ############################################################################## # The following are touched during the release process by bumpversion. # Do not modify these directly. -version = (2, 180, 0) +version = (2, 180, 1) verstring = '.'.join([str(x) for x in version]) commit = ''