diff --git a/common/pom.xml b/common/pom.xml
index a935b36bf81..0d18a7bc8f8 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 e7127030813..923e533b8b0 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 83a4337c77c..8c0d2a90f33 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 f31798d87d7..491bbfde585 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 28282bfc54e..8ae2f7683d0 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 bc9fc2a0bd5..ae2d03dfb8c 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 40025b7adf7..8ecec263020 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 03af2e8fc08..9b14399c62e 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 611eb66ed7f..1ff4a575fb2 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 222723af9bd..62b2edd893e 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 4c0f0fff471..08871265aa2 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 70d0a759863..1471ad490e5 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 53fdffaa1a0..a1a2b81d374 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 b76231b9a5c..6fc5d8fefed 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 105105d033b..5691031b584 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 ce00af44067..0f0a62a2a78 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 6c77ab6e454..fd88bc74be0 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 dd3a5976d4e..56018f1a745 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 e195480b579..f04f38b017c 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