From 84b918b4d7ca8e4028d7ac1570b4fe1a92c9a21e Mon Sep 17 00:00:00 2001 From: visi Date: Wed, 9 Aug 2023 20:43:45 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.143.0=20=E2=86=92=202.144.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- pyproject.toml | 2 +- synapse/lib/version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8533908b6c..0b3153cc6f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.143.0 +current_version = 2.144.0 commit = True tag = True tag_message = diff --git a/pyproject.toml b/pyproject.toml index 4601d97ed5..35f1c7be00 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta' [project] name = 'synapse' -version = '2.143.0' +version = '2.144.0' authors = [ { name = 'The Vertex Project LLC', email = 'root@vertex.link'}, ] diff --git a/synapse/lib/version.py b/synapse/lib/version.py index c9d3438e98..14030d855b 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, 143, 0) +version = (2, 144, 0) verstring = '.'.join([str(x) for x in version]) commit = ''