From ac93b04f7337562972501ff72417d131c131d8be Mon Sep 17 00:00:00 2001 From: Jonathan Warren Date: Sun, 28 Jul 2013 16:43:00 -0400 Subject: [PATCH] Increment version number to 0.3.5 --- Makefile | 2 +- src/build_osx.py | 2 +- src/shared.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 72a86ba2..e0ff247a 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ APP=pybitmessage -VERSION=0.3.4 +VERSION=0.3.5 RELEASE=1 ARCH_TYPE=`uname -m` PREFIX?=/usr/local diff --git a/src/build_osx.py b/src/build_osx.py index ff33f6c1..dd3d7259 100644 --- a/src/build_osx.py +++ b/src/build_osx.py @@ -14,7 +14,7 @@ from setuptools import setup # @UnresolvedImport name = "Bitmessage" mainscript = 'bitmessagemain.py' -version = "0.3.4" +version = "0.3.5" if sys.platform == 'darwin': extra_options = dict( diff --git a/src/shared.py b/src/shared.py index aead1f8a..32370524 100644 --- a/src/shared.py +++ b/src/shared.py @@ -1,4 +1,4 @@ -softwareVersion = '0.3.4' +softwareVersion = '0.3.5' verbose = 1 maximumAgeOfAnObjectThatIAmWillingToAccept = 216000 # Equals two days and 12 hours. lengthOfTimeToLeaveObjectsInInventory = 237600 # Equals two days and 18 hours. This should be longer than maximumAgeOfAnObjectThatIAmWillingToAccept so that we don't process messages twice.