Set version 0.9.0

This commit is contained in:
Manfred Karrer 2018-12-03 00:38:44 +01:00
parent 538c0bb691
commit de54518839
No known key found for this signature in database
GPG key ID: 401250966A6B2C46
14 changed files with 15 additions and 15 deletions

View file

@ -265,7 +265,7 @@ configure(project(':desktop')) {
apply plugin: 'witness' apply plugin: 'witness'
apply from: '../gradle/witness/gradle-witness.gradle' apply from: '../gradle/witness/gradle-witness.gradle'
version = '0.8.0-SNAPSHOT' version = '0.9.0-SNAPSHOT'
mainClassName = 'bisq.desktop.app.BisqAppMain' mainClassName = 'bisq.desktop.app.BisqAppMain'

View file

@ -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.8.0"; public static final String VERSION = "0.9.0";
public static int getMajorVersion(String version) { public static int getMajorVersion(String version) {
return getSubVersion(version, 0); return getSubVersion(version, 0);

View file

@ -6,7 +6,7 @@ mkdir -p deploy
set -e set -e
# Edit version # Edit version
version=0.8.0 version=0.9.0
dir="/media/sf_vm_shared_ubuntu14_32bit" dir="/media/sf_vm_shared_ubuntu14_32bit"

View file

@ -6,7 +6,7 @@ mkdir -p deploy
set -e set -e
# Edit version # Edit version
version=0.8.0 version=0.9.0
dir="/media/sf_vm_shared_ubuntu" dir="/media/sf_vm_shared_ubuntu"

View file

@ -8,7 +8,7 @@
# pull base image # pull base image
FROM openjdk:8-jdk FROM openjdk:8-jdk
ENV version 0.8.0 ENV version 0.9.0
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

View file

@ -2,7 +2,7 @@
## From https://github.com/bisq-network/bisq-desktop/issues/401#issuecomment-372091261 ## From https://github.com/bisq-network/bisq-desktop/issues/401#issuecomment-372091261
version=0.8.0 version=0.9.0
alien -r -g /home/$USER/Desktop/Bisq-64bit-$version.deb alien -r -g /home/$USER/Desktop/Bisq-64bit-$version.deb
find bisq-$version -type f | while read LIB; do LDDOUT=$(ldd $LIB 2>&1); LDDRETVAL=$?;if [ \( -z "${LDDOUT%%*you do not have execution permission for*}" \) -a \( $LDDRETVAL -eq 0 \) ]; then chmod -v +x $LIB;fi;done find bisq-$version -type f | while read LIB; do LDDOUT=$(ldd $LIB 2>&1); LDDRETVAL=$?;if [ \( -z "${LDDOUT%%*you do not have execution permission for*}" \) -a \( $LDDRETVAL -eq 0 \) ]; then chmod -v +x $LIB;fi;done

View file

@ -5,10 +5,10 @@
<!-- See: https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html --> <!-- See: https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -->
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>0.8.0</string> <string>0.9.0</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.8.0</string> <string>0.9.0</string>
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
<string>Bisq</string> <string>Bisq</string>

View file

@ -6,7 +6,7 @@ mkdir -p deploy
set -e set -e
version="0.8.0" version="0.9.0"
cd .. cd ..
./gradlew :desktop:build -x test shadowJar ./gradlew :desktop:build -x test shadowJar

View file

@ -2,7 +2,7 @@
cd ../../ cd ../../
version="0.8.0" version="0.9.0"
target_dir="releases/$version" target_dir="releases/$version"

View file

@ -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.8.0 SET version=0.9.0
:: Private setup :: Private setup
SET outdir=\\VBOXSVR\vm_shared_windows_32bit SET outdir=\\VBOXSVR\vm_shared_windows_32bit

View file

@ -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.8.0 SET version=0.9.0
:: Private setup :: Private setup
SET outdir=\\VBOXSVR\vm_shared_windows SET outdir=\\VBOXSVR\vm_shared_windows

View file

@ -3,7 +3,7 @@
[Setup] [Setup]
AppId={{bisq}} AppId={{bisq}}
AppName=Bisq AppName=Bisq
AppVersion=0.8.0 AppVersion=0.9.0
AppVerName=Bisq AppVerName=Bisq
AppPublisher=Bisq AppPublisher=Bisq
AppComments=Bisq AppComments=Bisq

View file

@ -1 +1 @@
0.8.0 0.9.0

View file

@ -33,7 +33,7 @@ import lombok.extern.slf4j.Slf4j;
@Slf4j @Slf4j
public class SeedNodeMain extends ExecutableForAppWithP2p { public class SeedNodeMain extends ExecutableForAppWithP2p {
private static final String VERSION = "0.8.0"; private static final String VERSION = "0.9.0";
private SeedNode seedNode; private SeedNode seedNode;
public SeedNodeMain() { public SeedNodeMain() {