Skip to content

Commit

Permalink
Set version 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ManfredKarrer committed Dec 2, 2018
1 parent 538c0bb commit de54518
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ configure(project(':desktop')) {
apply plugin: 'witness'
apply from: '../gradle/witness/gradle-witness.gradle'

version = '0.8.0-SNAPSHOT'
version = '0.9.0-SNAPSHOT'

mainClassName = 'bisq.desktop.app.BisqAppMain'

Expand Down
2 changes: 1 addition & 1 deletion common/src/main/java/bisq/common/app/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.0";
public static final String VERSION = "0.9.0";

public static int getMajorVersion(String version) {
return getSubVersion(version, 0);
Expand Down
2 changes: 1 addition & 1 deletion desktop/package/linux/32bitBuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mkdir -p deploy
set -e

# Edit version
version=0.8.0
version=0.9.0

dir="/media/sf_vm_shared_ubuntu14_32bit"

Expand Down
2 changes: 1 addition & 1 deletion desktop/package/linux/64bitBuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mkdir -p deploy
set -e

# Edit version
version=0.8.0
version=0.9.0

dir="/media/sf_vm_shared_ubuntu"

Expand Down
2 changes: 1 addition & 1 deletion desktop/package/linux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# pull base image
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/* &&
apt-get install -y vim fakeroot
Expand Down
2 changes: 1 addition & 1 deletion desktop/package/linux/rpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## 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
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
Expand Down
4 changes: 2 additions & 2 deletions desktop/package/macosx/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<!-- See: https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -->

<key>CFBundleVersion</key>
<string>0.8.0</string>
<string>0.9.0</string>

<key>CFBundleShortVersionString</key>
<string>0.8.0</string>
<string>0.9.0</string>

<key>CFBundleExecutable</key>
<string>Bisq</string>
Expand Down
2 changes: 1 addition & 1 deletion desktop/package/macosx/create_app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ mkdir -p deploy

set -e

version="0.8.0"
version="0.9.0"

cd ..
./gradlew :desktop:build -x test shadowJar
Expand Down
2 changes: 1 addition & 1 deletion desktop/package/macosx/finalize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

cd ../../

version="0.8.0"
version="0.9.0"

target_dir="releases/$version"

Expand Down
2 changes: 1 addition & 1 deletion desktop/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.8.0
SET version=0.9.0

:: Private setup
SET outdir=\\VBOXSVR\vm_shared_windows_32bit
Expand Down
2 changes: 1 addition & 1 deletion desktop/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.8.0
SET version=0.9.0

:: Private setup
SET outdir=\\VBOXSVR\vm_shared_windows
Expand Down
2 changes: 1 addition & 1 deletion desktop/package/windows/Bisq.iss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[Setup]
AppId={{bisq}}
AppName=Bisq
AppVersion=0.8.0
AppVersion=0.9.0
AppVerName=Bisq
AppPublisher=Bisq
AppComments=Bisq
Expand Down
2 changes: 1 addition & 1 deletion relay/src/main/resources/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.0
0.9.0
2 changes: 1 addition & 1 deletion seednode/src/main/java/bisq/seednode/SeedNodeMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

@Slf4j
public class SeedNodeMain extends ExecutableForAppWithP2p {
private static final String VERSION = "0.8.0";
private static final String VERSION = "0.9.0";
private SeedNode seedNode;

public SeedNodeMain() {
Expand Down

0 comments on commit de54518

Please sign in to comment.