diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c66a62e4c0..1b143dea0d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.21.1 +current_version = 2.22.0 commit = True tag = True tag_message = diff --git a/setup.py b/setup.py index 201f3ec3a8..fc5e3aba87 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages from setuptools.command.install import install -VERSION = '2.21.1' +VERSION = '2.22.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 643827967d..65bf84eb0f 100644 --- a/synapse/lib/version.py +++ b/synapse/lib/version.py @@ -216,5 +216,5 @@ def reqVersion(valu, reqver, ############################################################################## # The following are touched during the release process by bumpversion. # Do not modify these directly. -version = (2, 21, 1) +version = (2, 22, 0) verstring = '.'.join([str(x) for x in version])