Skip to content

Commit

Permalink
Merge branch 'master' into forward-broadast-msg
Browse files Browse the repository at this point in the history
  • Loading branch information
ManfredKarrer committed Apr 16, 2019
2 parents 188f3ee + 60826a1 commit 51f9394
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ configure(project(':desktop')) {
apply plugin: 'witness'
apply from: '../gradle/witness/gradle-witness.gradle'

version = '1.0.0'
version = '1.0.0-SNAPSHOT'

mainClassName = 'bisq.desktop.app.BisqAppMain'

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 1.0.0
ENV version 1.0.0-SNAPSHOT

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/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# - Update version below
# - Ensure JAVA_HOME below is pointing to OracleJDK 10 directory

version=1.0.0
version=1.0.0-SNAPSHOT
if [ ! -f "$JAVA_HOME/bin/javapackager" ]; then
if [ -d "/usr/lib/jvm/jdk-10.0.2" ]; then
JAVA_HOME=/usr/lib/jvm/jdk-10.0.2
Expand Down
2 changes: 1 addition & 1 deletion desktop/package/linux/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Prior to running this script:
# - Update version below

version=1.0.0
version=1.0.0-SNAPSHOT
base_dir=$( cd "$(dirname "$0")" ; pwd -P )/../../..
package_dir=$base_dir/desktop/package
release_dir=$base_dir/desktop/release/$version
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="1.0.0"
version="1.0.0-SNAPSHOT"

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="1.0.0"
version="1.0.0-SNAPSHOT"

target_dir="releases/$version"

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

@echo off

set version=1.0.0
set version=1.0.0-SNAPSHOT
if not exist "%JAVA_HOME%\bin\javapackager.exe" (
if not exist "%ProgramFiles%\Java\jdk-10.0.2" (
echo Javapackager not found. Update JAVA_HOME variable to point to OracleJDK.
Expand Down
2 changes: 1 addition & 1 deletion desktop/package/windows/release.bat
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

@echo off

set version=1.0.0
set version=1.0.0-SNAPSHOT
set release_dir=%~dp0..\..\..\releases\%version%
set package_dir=%~dp0..

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 @@
1.0.0
1.0.0-SNAPSHOT

0 comments on commit 51f9394

Please sign in to comment.