From e7478e51c3959e707aaedb262679227564d0ab0c Mon Sep 17 00:00:00 2001 From: epiphyte Date: Wed, 8 Dec 2021 21:44:47 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.73.0=20=E2=86=92=202.74.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- setup.py | 2 +- synapse/lib/version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 = ''