diff --git a/common/pom.xml b/common/pom.xml index a935b36bf8..0d18a7bc8f 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -5,7 +5,7 @@ parent io.bitsquare - 0.4.9.9.1 + 0.4.9.9.2 4.0.0 diff --git a/common/src/main/java/io/bitsquare/app/Version.java b/common/src/main/java/io/bitsquare/app/Version.java index e712703081..923e533b8b 100644 --- a/common/src/main/java/io/bitsquare/app/Version.java +++ b/common/src/main/java/io/bitsquare/app/Version.java @@ -24,7 +24,7 @@ public class Version { private static final Logger log = LoggerFactory.getLogger(Version.class); // The application versions - public static final String VERSION = "0.4.9.9.1"; + public static final String VERSION = "0.4.9.9.2"; // The version no. for the objects sent over the network. A change will break the serialization of old objects. // If objects are used for both network and database the network version is applied. @@ -45,7 +45,7 @@ public class Version { // A taker will check the version of the offers to see if his version is compatible. // TRADE_PROTOCOL_VERSION = 1 -> v. 0.4.9.8 and below // TRADE_PROTOCOL_VERSION = 2 -> v. 0.4.9.9 and above - public static final int TRADE_PROTOCOL_VERSION = 2; + public static final int TRADE_PROTOCOL_VERSION = 3; private static int p2pMessageVersion; public static int getP2PMessageVersion() { diff --git a/core/pom.xml b/core/pom.xml index 83a4337c77..8c0d2a90f3 100755 --- a/core/pom.xml +++ b/core/pom.xml @@ -6,7 +6,7 @@ parent io.bitsquare - 0.4.9.9.1 + 0.4.9.9.2 core diff --git a/gui/pom.xml b/gui/pom.xml index f31798d87d..491bbfde58 100644 --- a/gui/pom.xml +++ b/gui/pom.xml @@ -22,7 +22,7 @@ parent io.bitsquare - 0.4.9.9.1 + 0.4.9.9.2 4.0.0 diff --git a/jsocks/pom.xml b/jsocks/pom.xml index 28282bfc54..8ae2f7683d 100644 --- a/jsocks/pom.xml +++ b/jsocks/pom.xml @@ -5,7 +5,7 @@ parent io.bitsquare - 0.4.9.9.1 + 0.4.9.9.2 4.0.0 diff --git a/jtorctl/pom.xml b/jtorctl/pom.xml index bc9fc2a0bd..ae2d03dfb8 100644 --- a/jtorctl/pom.xml +++ b/jtorctl/pom.xml @@ -5,7 +5,7 @@ parent io.bitsquare - 0.4.9.9.1 + 0.4.9.9.2 4.0.0 diff --git a/jtorproxy/pom.xml b/jtorproxy/pom.xml index 40025b7adf..8ecec26302 100644 --- a/jtorproxy/pom.xml +++ b/jtorproxy/pom.xml @@ -5,7 +5,7 @@ parent io.bitsquare - 0.4.9.9.1 + 0.4.9.9.2 4.0.0 diff --git a/network/pom.xml b/network/pom.xml index 03af2e8fc0..9b14399c62 100644 --- a/network/pom.xml +++ b/network/pom.xml @@ -5,7 +5,7 @@ parent io.bitsquare - 0.4.9.9.1 + 0.4.9.9.2 4.0.0 diff --git a/package/linux/32bitBuild.sh b/package/linux/32bitBuild.sh index 611eb66ed7..1ff4a575fb 100644 --- a/package/linux/32bitBuild.sh +++ b/package/linux/32bitBuild.sh @@ -6,7 +6,7 @@ mkdir -p gui/deploy set -e # Edit version -version=0.4.9.9.1 +version=0.4.9.9.2 jarFile="/media/sf_vm_shared_ubuntu14_32bit/Bitsquare-$version.jar" diff --git a/package/linux/64bitBuild.sh b/package/linux/64bitBuild.sh index 222723af9b..62b2edd893 100644 --- a/package/linux/64bitBuild.sh +++ b/package/linux/64bitBuild.sh @@ -6,7 +6,7 @@ mkdir -p gui/deploy set -e # Edit version -version=0.4.9.9.1 +version=0.4.9.9.2 jarFile="/media/sf_vm_shared_ubuntu/Bitsquare-$version.jar" diff --git a/package/mac/create_app.sh b/package/mac/create_app.sh index 4c0f0fff47..08871265aa 100755 --- a/package/mac/create_app.sh +++ b/package/mac/create_app.sh @@ -5,7 +5,7 @@ mkdir -p gui/deploy set -e -version="0.4.9.9.1" +version="0.4.9.9.2" mvn clean package verify -DskipTests -Dmaven.javadoc.skip=true diff --git a/package/mac/finalize.sh b/package/mac/finalize.sh index 70d0a75986..1471ad490e 100644 --- a/package/mac/finalize.sh +++ b/package/mac/finalize.sh @@ -1,6 +1,6 @@ #!/bin/bash -version="0.4.9.9.1" +version="0.4.9.9.2" target_dir="/Users/dev/Documents/__bitsquare/_releases/$version" src_dir="/Users/dev/Documents/intellij/bitsquare" diff --git a/package/windows/32bitBuild.bat b/package/windows/32bitBuild.bat index 53fdffaa1a..a1a2b81d37 100644 --- a/package/windows/32bitBuild.bat +++ b/package/windows/32bitBuild.bat @@ -5,7 +5,7 @@ :: 32 bit build :: Needs Inno Setup 5 or later (http://www.jrsoftware.org/isdl.php) -SET version=0.4.9.9.1 +SET version=0.4.9.9.2 :: Private setup SET outdir=\\VBOXSVR\vm_shared_windows_32bit diff --git a/package/windows/64bitBuild.bat b/package/windows/64bitBuild.bat index b76231b9a5..6fc5d8fefe 100644 --- a/package/windows/64bitBuild.bat +++ b/package/windows/64bitBuild.bat @@ -5,7 +5,7 @@ :: 64 bit build :: Needs Inno Setup 5 or later (http://www.jrsoftware.org/isdl.php) -SET version=0.4.9.9.1 +SET version=0.4.9.9.2 :: Private setup SET outdir=\\VBOXSVR\vm_shared_windows diff --git a/package/windows/Bitsquare.iss b/package/windows/Bitsquare.iss index 105105d033..5691031b58 100755 --- a/package/windows/Bitsquare.iss +++ b/package/windows/Bitsquare.iss @@ -3,7 +3,7 @@ [Setup] AppId={{bitsquare}} AppName=Bitsquare -AppVersion=0.4.9.9.1 +AppVersion=0.4.9.9.2 AppVerName=Bitsquare AppPublisher=Bitsquare AppComments=Bitsquare diff --git a/pom.xml b/pom.xml index ce00af4406..0f0a62a2a7 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ io.bitsquare parent pom - 0.4.9.9.1 + 0.4.9.9.2 Bitsquare - The decentralized bitcoin exchange https://bitsquare.io diff --git a/pricefeed/pom.xml b/pricefeed/pom.xml index 6c77ab6e45..fd88bc74be 100644 --- a/pricefeed/pom.xml +++ b/pricefeed/pom.xml @@ -5,7 +5,7 @@ parent io.bitsquare - 0.4.9.9.1 + 0.4.9.9.2 4.0.0 diff --git a/seednode/pom.xml b/seednode/pom.xml index dd3a5976d4..56018f1a74 100644 --- a/seednode/pom.xml +++ b/seednode/pom.xml @@ -5,7 +5,7 @@ parent io.bitsquare - 0.4.9.9.1 + 0.4.9.9.2 4.0.0 diff --git a/statistics/pom.xml b/statistics/pom.xml index e195480b57..f04f38b017 100644 --- a/statistics/pom.xml +++ b/statistics/pom.xml @@ -5,7 +5,7 @@ parent io.bitsquare - 0.4.9.9.1 + 0.4.9.9.2 4.0.0