From eb1e5a6bc49e16d62e0d22c92b9de78e53c64370 Mon Sep 17 00:00:00 2001 From: epiphyte Date: Thu, 16 Nov 2017 10:15:43 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.0.34=20=E2=86=92=200.0.35?= 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 efd2ab4b55..42b81cf7a8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.34 +current_version = 0.0.35 commit = True tag = True diff --git a/setup.py b/setup.py index d980a16b47..7f248a423e 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='synapse', - version='0.0.34', + version='0.0.35', 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 f871f20d13..d24e4f1b76 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, 34) +version = (0, 0, 35) verstring = '.'.join([str(x) for x in version])