Bump version number

This commit is contained in:
Christoph Atteneder 2018-12-13 13:59:08 +01:00
parent 38e5688dc6
commit 50d4c6c1fc
No known key found for this signature in database
GPG Key ID: CD5DC1C529CDFD3B
12 changed files with 13 additions and 13 deletions

View File

@ -265,7 +265,7 @@ configure(project(':desktop')) {
apply plugin: 'witness'
apply from: '../gradle/witness/gradle-witness.gradle'
version = '0.9.0-SNAPSHOT'
version = '0.9.1'
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
// Therefore all sub versions start again with 1
// We use semantic versioning with major, minor and patch
public static final String VERSION = "0.9.0";
public static final String VERSION = "0.9.1";
public static int getMajorVersion(String version) {
return getSubVersion(version, 0);

View File

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

View File

@ -8,7 +8,7 @@
# pull base image
FROM openjdk:8-jdk
ENV version 0.9.0
ENV version 0.9.1
RUN apt-get update && apt-get install -y --no-install-recommends openjfx && rm -rf /var/lib/apt/lists/* &&
apt-get install -y vim fakeroot

View File

@ -2,7 +2,7 @@
## From https://github.com/bisq-network/bisq-desktop/issues/401#issuecomment-372091261
version=0.9.0
version=0.9.1
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

View File

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

View File

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

View File

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

View File

@ -7,7 +7,7 @@
cd ../../
SET version=0.9.0
SET version=0.9.1
:: Private setup
::SET outdir=\\VBOXSVR\vm_shared_windows

View File

@ -4,7 +4,7 @@
AppId={{bisq}}
AppName=Bisq
AppVersion=0.9.0
AppVersion=0.9.1
AppVerName=Bisq
AppPublisher=Bisq
AppComments=Bisq

View File

@ -1 +1 @@
0.9.0
0.9.1

View File

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