From 605e9288e466fcbc93276b657922489adceff9f8 Mon Sep 17 00:00:00 2001 From: Manfred Karrer Date: Sun, 17 Apr 2016 22:10:42 +0200 Subject: [PATCH] change data version for v0.4.2 --- common/src/main/java/io/bitsquare/app/Version.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/common/src/main/java/io/bitsquare/app/Version.java b/common/src/main/java/io/bitsquare/app/Version.java index 834e5edf9e..958dea6bc7 100644 --- a/common/src/main/java/io/bitsquare/app/Version.java +++ b/common/src/main/java/io/bitsquare/app/Version.java @@ -31,13 +31,15 @@ public class Version { // VERSION = 0.3.4 -> P2P_NETWORK_VERSION = 1 // VERSION = 0.3.5 -> P2P_NETWORK_VERSION = 2 // VERSION = 0.4.0 -> P2P_NETWORK_VERSION = 3 - public static final int P2P_NETWORK_VERSION = 3; + // VERSION = 0.4.2 -> P2P_NETWORK_VERSION = 4 + public static final int P2P_NETWORK_VERSION = 4; // The version nr. of the serialized data stored to disc. A change will break the serialization of old objects. // VERSION = 0.3.4 -> LOCAL_DB_VERSION = 1 // VERSION = 0.3.5 -> LOCAL_DB_VERSION = 2 // VERSION = 0.4.0 -> LOCAL_DB_VERSION = 3 - public static final int LOCAL_DB_VERSION = 3; + // VERSION = 0.4.2 -> LOCAL_DB_VERSION = 4 + public static final int LOCAL_DB_VERSION = 4; // The version nr. of the current protocol. The offer holds that version. // A taker will check the version of the offers to see if his version is compatible.