Skip to content

Commit

Permalink
Bump version number and update public key of Manfred Karrer
Browse files Browse the repository at this point in the history
  • Loading branch information
ripcurlx committed Nov 12, 2018
1 parent c866f9d commit 4bcc977
Show file tree
Hide file tree
Showing 13 changed files with 370 additions and 184 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apply plugin: 'witness'
apply plugin: 'com.github.johnrengelman.shadow'

group = 'network.bisq'
version = '0.8.0'
version = '0.8.1'

sourceCompatibility = 1.8

Expand All @@ -40,9 +40,9 @@ repositories {
}

dependencies {
compile 'network.bisq:bisq-p2p:0.8.0'
compile 'network.bisq:bisq-core:0.8.0'
compile 'network.bisq:bisq-common:0.8.0'
compile 'network.bisq:bisq-p2p:0.8.1'
compile 'network.bisq:bisq-core:0.8.1'
compile 'network.bisq:bisq-common:0.8.1'
compile 'org.controlsfx:controlsfx:8.0.6_20'
compile 'org.reactfx:reactfx:2.0-M3'
compile 'net.glxn:qrgen:1.3'
Expand Down
259 changes: 176 additions & 83 deletions package/F379A1C6.asc

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion 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.8.1

dir="/media/sf_vm_shared_ubuntu14_32bit"

Expand Down
2 changes: 1 addition & 1 deletion 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.8.1

dir="/media/sf_vm_shared_ubuntu"

Expand Down
2 changes: 1 addition & 1 deletion 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.8.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
Expand Down
2 changes: 1 addition & 1 deletion 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.8.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
Expand Down
2 changes: 1 addition & 1 deletion package/osx/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<key>JVMAppClasspath</key>
<string></string>
<key>JVMMainJarName</key>
<string>Bisq-0.8.0.jar</string>
<string>Bisq-0.8.1.jar</string>
<key>JVMPreferencesID</key>
<string>bisq</string>
<key>JVMOptions</key>
Expand Down
10 changes: 5 additions & 5 deletions package/osx/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.8.1"

./gradlew --include-build ../common --include-build ../assets --include-build ../p2p --include-build ../core build -x test shadowJar

Expand All @@ -23,10 +23,10 @@ echo SHA 256 after stripping jar file to get a deterministic jar:
shasum -a256 $EXE_JAR | awk '{print $1}' | tee deploy/Bisq-$version.jar.txt


linux32=/Volumes/vm_shared_ubuntu14_32bit
linux64=/Volumes/vm_shared_ubuntu
win32=/Volumes/vm_shared_windows_32bit
win64=/Volumes/vm_shared_windows
linux32=deploy/vm_shared_ubuntu14_32bit
linux64=deploy/vm_shared_ubuntu
win32=deploy/vm_shared_windows_32bit
win64=deploy/vm_shared_windows

mkdir -p $linux32 $linux64 $win32 $win64

Expand Down
2 changes: 1 addition & 1 deletion package/osx/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.8.1"

target_dir="releases/$version"

Expand Down
2 changes: 1 addition & 1 deletion 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.8.1

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

:: Private setup
SET outdir=\\VBOXSVR\vm_shared_windows
Expand Down
2 changes: 1 addition & 1 deletion 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.8.1
AppVerName=Bisq
AppPublisher=Bisq
AppComments=Bisq
Expand Down
259 changes: 176 additions & 83 deletions src/main/resources/keys/F379A1C6.asc

Large diffs are not rendered by default.

0 comments on commit 4bcc977

Please sign in to comment.