mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Prepare v0.6.3
This commit is contained in:
parent
71a0fc5240
commit
aeec075c91
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>io.bisq</groupId>
|
<groupId>io.bisq</groupId>
|
||||||
<version>0.6.2</version>
|
<version>0.6.3</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ public class Version {
|
|||||||
// VERSION = 0.5.0 introduces proto buffer for the P2P network and local DB and is a not backward compatible update
|
// VERSION = 0.5.0 introduces proto buffer for the P2P network and local DB and is a not backward compatible update
|
||||||
// Therefore all sub versions start again with 1
|
// Therefore all sub versions start again with 1
|
||||||
// We use semantic versioning with major, minor and patch
|
// We use semantic versioning with major, minor and patch
|
||||||
public static final String VERSION = "0.6.2";
|
public static final String VERSION = "0.6.3";
|
||||||
|
|
||||||
public static int getMajorVersion(String version) {
|
public static int getMajorVersion(String version) {
|
||||||
return getSubVersion(version, 0);
|
return getSubVersion(version, 0);
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>io.bisq</groupId>
|
<groupId>io.bisq</groupId>
|
||||||
<version>0.6.2</version>
|
<version>0.6.3</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>io.bisq</groupId>
|
<groupId>io.bisq</groupId>
|
||||||
<version>0.6.2</version>
|
<version>0.6.3</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>core</artifactId>
|
<artifactId>core</artifactId>
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>io.bisq</groupId>
|
<groupId>io.bisq</groupId>
|
||||||
<version>0.6.2</version>
|
<version>0.6.3</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>io.bisq</groupId>
|
<groupId>io.bisq</groupId>
|
||||||
<version>0.6.2</version>
|
<version>0.6.3</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>io.bisq</groupId>
|
<groupId>io.bisq</groupId>
|
||||||
<version>0.6.2</version>
|
<version>0.6.3</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ mkdir -p gui/deploy
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Edit version
|
# Edit version
|
||||||
version=0.6.2
|
version=0.6.3
|
||||||
|
|
||||||
dir="/media/sf_vm_shared_ubuntu14_32bit"
|
dir="/media/sf_vm_shared_ubuntu14_32bit"
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ mkdir -p gui/deploy
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Edit version
|
# Edit version
|
||||||
version=0.6.2
|
version=0.6.3
|
||||||
|
|
||||||
dir="/media/sf_vm_shared_ubuntu"
|
dir="/media/sf_vm_shared_ubuntu"
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
# pull base image
|
# pull base image
|
||||||
FROM openjdk:8-jdk
|
FROM openjdk:8-jdk
|
||||||
ENV version 0.6.2
|
ENV version 0.6.3
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends openjfx && rm -rf /var/lib/apt/lists/* &&
|
RUN apt-get update && apt-get install -y --no-install-recommends openjfx && rm -rf /var/lib/apt/lists/* &&
|
||||||
apt-get install -y vim fakeroot
|
apt-get install -y vim fakeroot
|
||||||
|
@ -5,7 +5,7 @@ mkdir -p gui/deploy
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
version="0.6.2"
|
version="0.6.3"
|
||||||
|
|
||||||
mvn clean package verify -DskipTests -Dmaven.javadoc.skip=true
|
mvn clean package verify -DskipTests -Dmaven.javadoc.skip=true
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
version="0.6.2"
|
version="0.6.3"
|
||||||
|
|
||||||
target_dir="/Users/dev/Documents/__bisq/_releases/$version"
|
target_dir="/Users/dev/Documents/__bisq/_releases/$version"
|
||||||
src_dir="/Users/dev/Documents/intellij/exchange_bisq"
|
src_dir="/Users/dev/Documents/intellij/exchange_bisq"
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
:: 32 bit build
|
:: 32 bit build
|
||||||
:: Needs Inno Setup 5 or later (http://www.jrsoftware.org/isdl.php)
|
:: Needs Inno Setup 5 or later (http://www.jrsoftware.org/isdl.php)
|
||||||
|
|
||||||
SET version=0.6.2
|
SET version=0.6.3
|
||||||
|
|
||||||
:: Private setup
|
:: Private setup
|
||||||
SET outdir=\\VBOXSVR\vm_shared_windows_32bit
|
SET outdir=\\VBOXSVR\vm_shared_windows_32bit
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
:: 64 bit build
|
:: 64 bit build
|
||||||
:: Needs Inno Setup 5 or later (http://www.jrsoftware.org/isdl.php)
|
:: Needs Inno Setup 5 or later (http://www.jrsoftware.org/isdl.php)
|
||||||
|
|
||||||
SET version=0.6.2
|
SET version=0.6.3
|
||||||
|
|
||||||
:: Private setup
|
:: Private setup
|
||||||
SET outdir=\\VBOXSVR\vm_shared_windows
|
SET outdir=\\VBOXSVR\vm_shared_windows
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
[Setup]
|
[Setup]
|
||||||
AppId={{bisq}}
|
AppId={{bisq}}
|
||||||
AppName=Bisq
|
AppName=Bisq
|
||||||
AppVersion=0.6.2
|
AppVersion=0.6.3
|
||||||
AppVerName=Bisq
|
AppVerName=Bisq
|
||||||
AppPublisher=Bisq
|
AppPublisher=Bisq
|
||||||
AppComments=Bisq
|
AppComments=Bisq
|
||||||
|
2
pom.xml
2
pom.xml
@ -6,7 +6,7 @@
|
|||||||
<groupId>io.bisq</groupId>
|
<groupId>io.bisq</groupId>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<version>0.6.2</version>
|
<version>0.6.3</version>
|
||||||
<description>Bisq - The decentralized exchange network</description>
|
<description>Bisq - The decentralized exchange network</description>
|
||||||
<url>https://bisq.io</url>
|
<url>https://bisq.io</url>
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>io.bisq</groupId>
|
<groupId>io.bisq</groupId>
|
||||||
<version>0.6.2</version>
|
<version>0.6.3</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>io.bisq</groupId>
|
<groupId>io.bisq</groupId>
|
||||||
<version>0.6.2</version>
|
<version>0.6.3</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>io.bisq</groupId>
|
<groupId>io.bisq</groupId>
|
||||||
<version>0.6.2</version>
|
<version>0.6.3</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user