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.