Set back to SNAPSHOT

This commit is contained in:
Christoph Atteneder 2019-01-08 16:48:22 +01:00
parent d6543377cf
commit 307a5b8822
No known key found for this signature in database
GPG Key ID: CD5DC1C529CDFD3B
8 changed files with 8 additions and 8 deletions

View File

@ -276,7 +276,7 @@ configure(project(':desktop')) {
apply plugin: 'witness'
apply from: '../gradle/witness/gradle-witness.gradle'
version = '0.9.2'
version = '0.9.2-SNAPSHOT'
mainClassName = 'bisq.desktop.app.BisqAppMain'

View File

@ -6,7 +6,7 @@
# - Update version below
# - Ensure JAVA_HOME below is pointing to OracleJDK 10 directory
version=0.9.2
version=0.9.2-SNAPSHOT
base_dir=$( cd "$(dirname "$0")" ; pwd -P )/../../..
src_dir=$base_dir/desktop/package

View File

@ -4,7 +4,7 @@
# Prior to running this script:
# - Update version below
version=0.9.2
version=0.9.2-SNAPSHOT
base_dir=$( cd "$(dirname "$0")" ; pwd -P )/../../..
package_dir=$base_dir/desktop/package
release_dir=$base_dir/desktop/release/$version

View File

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

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

View File

@ -2,7 +2,7 @@
cd ../../
version="0.9.2"
version="0.9.2-SNAPSHOT"
target_dir="releases/$version"

View File

@ -8,7 +8,7 @@
@echo off
set version=0.9.2
set version=0.9.2-SNAPSHOT
set package_dir=%~dp0..
for /F "tokens=1,2,3 delims=.-" %%a in ("%version%") do (
set file_version=%%a.%%b.%%c

View File

@ -6,7 +6,7 @@
@echo off
set version=0.9.2
set version=0.9.2-SNAPSHOT
set release_dir=%~dp0..\..\..\releases\%version%
set package_dir=%~dp0..