From bb45f97124cf01338727034410c3bff4d0074b70 Mon Sep 17 00:00:00 2001 From: epiphyte Date: Tue, 2 Jan 2018 16:27:02 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.0.42=20=E2=86=92=200.0.43?= 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 c5901d78c9..4ffe7c55cc 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.42 +current_version = 0.0.43 commit = True tag = True diff --git a/setup.py b/setup.py index 46276133ac..5bae351dfe 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='synapse', - version='0.0.42', + version='0.0.43', description='Synapse Distributed Key-Value Hypergraph Analysis Framework', author='Invisigoth Kenshoto', author_email='invisigoth.kenshoto@gmail.com', diff --git a/synapse/lib/version.py b/synapse/lib/version.py index c2def7916a..2adbef3cd2 100644 --- a/synapse/lib/version.py +++ b/synapse/lib/version.py @@ -183,5 +183,5 @@ def parseVersionParts(text, seps=vseps): ############################################################################## # The following are touched during the release process by bumpversion. # Do not modify these directly. -version = (0, 0, 42) +version = (0, 0, 43) verstring = '.'.join([str(x) for x in version])