diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3ae0127995..c5901d78c9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.41 +current_version = 0.0.42 commit = True tag = True diff --git a/setup.py b/setup.py index 6c8522a2c1..46276133ac 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='synapse', - version='0.0.41', + version='0.0.42', 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 04857fe088..c2def7916a 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, 41) +version = (0, 0, 42) verstring = '.'.join([str(x) for x in version])