Bump version number for v1.8.4

This commit is contained in:
Christoph Atteneder 2022-03-07 16:42:10 +01:00
parent 605e8886d0
commit 8136f0a6ca
No known key found for this signature in database
GPG Key ID: CD5DC1C529CDFD3B
9 changed files with 11 additions and 11 deletions

View File

@ -461,7 +461,7 @@ configure(project(':desktop')) {
modules = ['javafx.controls', 'javafx.fxml']
}
version = '1.8.3-SNAPSHOT'
version = '1.8.4'
jar.manifest.attributes(
"Implementation-Title": project.name,

View File

@ -30,7 +30,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 = "1.8.3";
public static final String VERSION = "1.8.4";
/**
* Holds a list of the tagged resource files for optimizing the getData requests.

View File

@ -8,7 +8,7 @@
# pull base image
FROM openjdk:8-jdk
ENV version 1.8.3-SNAPSHOT
ENV version 1.8.4
RUN apt-get update && apt-get install -y --no-install-recommends openjfx && rm -rf /var/lib/apt/lists/* &&
apt-get install -y vim fakeroot

View File

@ -5,10 +5,10 @@
<!-- See: https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -->
<key>CFBundleVersion</key>
<string>1.8.3</string>
<string>1.8.4</string>
<key>CFBundleShortVersionString</key>
<string>1.8.3</string>
<string>1.8.4</string>
<key>CFBundleExecutable</key>
<string>Bisq</string>

View File

@ -2,7 +2,7 @@
cd $(dirname $0)/../../../
version="1.8.3"
version="1.8.4"
# Set BISQ_DIR as environment var to the path of your locally synced Bisq data directory e.g. BISQ_DIR=~/Library/Application\ Support/Bisq

View File

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

View File

@ -2,8 +2,8 @@
cd $(dirname $0)/../../../.
oldVersion=1.8.2
newVersion=1.8.3
oldVersion=1.8.3
newVersion=1.8.4
find . -type f \( -name "finalize.sh" \
-o -name "create_app.sh" \

View File

@ -1 +1 @@
1.8.3-SNAPSHOT
1.8.4

View File

@ -52,7 +52,7 @@ import lombok.extern.slf4j.Slf4j;
@Slf4j
public class SeedNodeMain extends ExecutableForAppWithP2p {
private static final long CHECK_CONNECTION_LOSS_SEC = 30;
private static final String VERSION = "1.8.3";
private static final String VERSION = "1.8.4";
private SeedNode seedNode;
private Timer checkConnectionLossTime;