diff --git a/build.gradle b/build.gradle
index 92faebebd4..5ff7fcc2f3 100644
--- a/build.gradle
+++ b/build.gradle
@@ -465,7 +465,7 @@ configure(project(':desktop')) {
modules = ['javafx.controls', 'javafx.fxml']
}
- version = '1.9.2-SNAPSHOT'
+ version = '1.9.3'
jar.manifest.attributes(
"Implementation-Title": project.name,
diff --git a/common/src/main/java/bisq/common/app/Version.java b/common/src/main/java/bisq/common/app/Version.java
index c8c50a975e..472181300d 100644
--- a/common/src/main/java/bisq/common/app/Version.java
+++ b/common/src/main/java/bisq/common/app/Version.java
@@ -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.9.2";
+ public static final String VERSION = "1.9.3";
/**
* Holds a list of the tagged resource files for optimizing the getData requests.
diff --git a/desktop/package/linux/Dockerfile b/desktop/package/linux/Dockerfile
index 4aa6042360..ddbd5a425d 100644
--- a/desktop/package/linux/Dockerfile
+++ b/desktop/package/linux/Dockerfile
@@ -8,7 +8,7 @@
# pull base image
FROM openjdk:8-jdk
-ENV version 1.9.2-SNAPSHOT
+ENV version 1.9.3
RUN apt-get update && apt-get install -y --no-install-recommends openjfx && rm -rf /var/lib/apt/lists/* &&
apt-get install -y vim fakeroot
diff --git a/desktop/package/macosx/Info.plist b/desktop/package/macosx/Info.plist
index f883a3870f..b58d64c7bc 100644
--- a/desktop/package/macosx/Info.plist
+++ b/desktop/package/macosx/Info.plist
@@ -5,10 +5,10 @@
CFBundleVersion
- 1.9.2
+ 1.9.3
CFBundleShortVersionString
- 1.9.2
+ 1.9.3
CFBundleExecutable
Bisq
diff --git a/desktop/package/macosx/copy_dbs.sh b/desktop/package/macosx/copy_dbs.sh
index 90f9bfd2dd..62662f913a 100755
--- a/desktop/package/macosx/copy_dbs.sh
+++ b/desktop/package/macosx/copy_dbs.sh
@@ -2,7 +2,7 @@
cd $(dirname $0)/../../../
-version="1.9.2"
+version="1.9.3"
# Set BISQ_DIR as environment var to the path of your locally synced Bisq data directory e.g. BISQ_DIR=~/Library/Application\ Support/Bisq
diff --git a/desktop/package/macosx/finalize.sh b/desktop/package/macosx/finalize.sh
index bcd29b262c..26c4897af9 100755
--- a/desktop/package/macosx/finalize.sh
+++ b/desktop/package/macosx/finalize.sh
@@ -2,7 +2,7 @@
cd ../../
-version="1.9.2-SNAPSHOT"
+version="1.9.3"
target_dir="releases/$version"
diff --git a/desktop/package/macosx/replace_version_number.sh b/desktop/package/macosx/replace_version_number.sh
index cad2fb5ea6..a6dcc3e684 100755
--- a/desktop/package/macosx/replace_version_number.sh
+++ b/desktop/package/macosx/replace_version_number.sh
@@ -2,8 +2,8 @@
cd $(dirname $0)/../../../.
-oldVersion=1.9.1
-newVersion=1.9.2
+oldVersion=1.9.2
+newVersion=1.9.3
find . -type f \( -name "finalize.sh" \
-o -name "create_app.sh" \
diff --git a/relay/src/main/resources/version.txt b/relay/src/main/resources/version.txt
index a75e4fa587..77fee73a8c 100644
--- a/relay/src/main/resources/version.txt
+++ b/relay/src/main/resources/version.txt
@@ -1 +1 @@
-1.9.2-SNAPSHOT
+1.9.3
diff --git a/seednode/src/main/java/bisq/seednode/SeedNodeMain.java b/seednode/src/main/java/bisq/seednode/SeedNodeMain.java
index 20b33bc2b7..a5baed3642 100644
--- a/seednode/src/main/java/bisq/seednode/SeedNodeMain.java
+++ b/seednode/src/main/java/bisq/seednode/SeedNodeMain.java
@@ -51,7 +51,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.9.2";
+ private static final String VERSION = "1.9.3";
private SeedNode seedNode;
private Timer checkConnectionLossTime;