diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 40a7ebff35..7adad7f95e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.73.0 +current_version = 2.74.0 commit = True tag = True tag_message = diff --git a/setup.py b/setup.py index e694366d51..ac5839520e 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ from setuptools import setup, find_packages from setuptools.command.install import install -VERSION = '2.73.0' +VERSION = '2.74.0' class VerifyVersionCommand(install): """Custom command to verify that the git tag matches our version""" diff --git a/synapse/lib/version.py b/synapse/lib/version.py index 0d5ae1bac7..44be488582 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, 73, 0) +version = (2, 74, 0) verstring = '.'.join([str(x) for x in version]) commit = ''