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])