mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Bump version number
This commit is contained in:
parent
38e5688dc6
commit
50d4c6c1fc
@ -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'
|
||||
|
||||
|
@ -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);
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
@ -6,7 +6,7 @@ mkdir -p deploy
|
||||
|
||||
set -e
|
||||
|
||||
version="0.9.0"
|
||||
version="0.9.1"
|
||||
|
||||
cd ..
|
||||
./gradlew :desktop:build -x test shadowJar
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
cd ../../
|
||||
|
||||
version="0.9.0"
|
||||
version="0.9.1"
|
||||
|
||||
target_dir="releases/$version"
|
||||
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
cd ../../
|
||||
|
||||
SET version=0.9.0
|
||||
SET version=0.9.1
|
||||
|
||||
:: Private setup
|
||||
::SET outdir=\\VBOXSVR\vm_shared_windows
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
AppId={{bisq}}
|
||||
AppName=Bisq
|
||||
AppVersion=0.9.0
|
||||
AppVersion=0.9.1
|
||||
AppVerName=Bisq
|
||||
AppPublisher=Bisq
|
||||
AppComments=Bisq
|
||||
|
@ -1 +1 @@
|
||||
0.9.0
|
||||
0.9.1
|
||||
|
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user