Version 0.4.0

This commit is contained in:
Manfred Karrer 2016-04-08 22:53:38 +02:00
parent 652efa5499
commit 333d0bf789
16 changed files with 22 additions and 22 deletions

View file

@ -5,7 +5,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>io.bitsquare</groupId>
<version>0.3.7-SNAPSHOT</version>
<version>0.4.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View file

@ -24,19 +24,19 @@ public class Version {
private static final Logger log = LoggerFactory.getLogger(Version.class);
// The application versions
public static final String VERSION = "0.3.7";
public static final String VERSION = "0.4.0";
// The version nr. 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.
// VERSION = 0.3.4 -> P2P_NETWORK_VERSION = 1
// VERSION = 0.3.5 -> P2P_NETWORK_VERSION = 2
// VERSION = 0.3.7 -> P2P_NETWORK_VERSION = 3
// VERSION = 0.4.0 -> P2P_NETWORK_VERSION = 3
public static final int P2P_NETWORK_VERSION = 3;
// 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.3.7 -> LOCAL_DB_VERSION = 3
// VERSION = 0.4.0 -> LOCAL_DB_VERSION = 3
public static final int LOCAL_DB_VERSION = 3;
// The version nr. of the current protocol. The offer holds that version.