Skip to content

Commit

Permalink
Version 0.4.9.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ManfredKarrer committed May 17, 2017
1 parent e107927 commit e5585a1
Show file tree
Hide file tree
Showing 19 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>io.bitsquare</groupId>
<version>0.4.9.9.1</version>
<version>0.4.9.9.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions common/src/main/java/io/bitsquare/app/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>io.bitsquare</groupId>
<version>0.4.9.9.1</version>
<version>0.4.9.9.2</version>
</parent>

<artifactId>core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion gui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>io.bitsquare</groupId>
<version>0.4.9.9.1</version>
<version>0.4.9.9.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion jsocks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>io.bitsquare</groupId>
<version>0.4.9.9.1</version>
<version>0.4.9.9.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion jtorctl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>io.bitsquare</groupId>
<version>0.4.9.9.1</version>
<version>0.4.9.9.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion jtorproxy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>io.bitsquare</groupId>
<version>0.4.9.9.1</version>
<version>0.4.9.9.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion network/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>io.bitsquare</groupId>
<version>0.4.9.9.1</version>
<version>0.4.9.9.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion package/linux/32bitBuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion package/linux/64bitBuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion package/mac/create_app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion package/mac/finalize.sh
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion package/windows/32bitBuild.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package/windows/64bitBuild.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion package/windows/Bitsquare.iss
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>io.bitsquare</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<version>0.4.9.9.1</version>
<version>0.4.9.9.2</version>
<description>Bitsquare - The decentralized bitcoin exchange</description>
<url>https://bitsquare.io</url>

Expand Down
2 changes: 1 addition & 1 deletion pricefeed/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>io.bitsquare</groupId>
<version>0.4.9.9.1</version>
<version>0.4.9.9.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion seednode/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>io.bitsquare</groupId>
<version>0.4.9.9.1</version>
<version>0.4.9.9.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion statistics/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>io.bitsquare</groupId>
<version>0.4.9.9.1</version>
<version>0.4.9.9.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit e5585a1

Please sign in to comment.