Skip to content

Commit d95dc58

Browse files
Bump version number for v1.9.12
1 parent 3d573a9 commit d95dc58

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

common/src/main/java/bisq/common/app/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class Version {
3636
// VERSION = 0.5.0 introduces proto buffer for the P2P network and local DB and is a not backward compatible update
3737
// Therefore all sub versions start again with 1
3838
// We use semantic versioning with major, minor and patch
39-
public static final String VERSION = "1.9.11";
39+
public static final String VERSION = "1.9.12";
4040

4141
/**
4242
* Holds a list of the tagged resource files for optimizing the getData requests.

desktop/package/linux/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
# pull base image
1010
FROM openjdk:8-jdk
11-
ENV version 1.9.11
11+
ENV version 1.9.12
1212

1313
RUN apt-get update && apt-get install -y --no-install-recommends openjfx && rm -rf /var/lib/apt/lists/* &&
1414
apt-get install -y vim fakeroot

desktop/package/macosx/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
<!-- See: https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -->
66

77
<key>CFBundleVersion</key>
8-
<string>1.9.11</string>
8+
<string>1.9.12</string>
99

1010
<key>CFBundleShortVersionString</key>
11-
<string>1.9.11</string>
11+
<string>1.9.12</string>
1212

1313
<key>CFBundleExecutable</key>
1414
<string>Bisq</string>

desktop/package/macosx/copy_dbs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cd $(dirname $0)/../../../
44

5-
version="1.9.11"
5+
version="1.9.12"
66

77
# Set BISQ_DIR as environment var to the path of your locally synced Bisq data directory e.g. BISQ_DIR=~/Library/Application\ Support/Bisq
88

desktop/package/macosx/finalize.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cd ../../
44

5-
version="1.9.11"
5+
version="1.9.12"
66

77
target_dir="releases/$version"
88

desktop/package/macosx/insert_snapshot_version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
cd $(dirname $0)/../../../
44

5-
version=1.9.10
5+
version=1.9.11
66

77
find . -type f \( -name "finalize.sh" \
88
-o -name "create_app.sh" \

desktop/package/macosx/replace_version_number.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
cd $(dirname $0)/../../../.
44

5-
oldVersion=1.9.10
6-
newVersion=1.9.11
5+
oldVersion=1.9.11
6+
newVersion=1.9.12
77

88
find . -type f \( -name "finalize.sh" \
99
-o -name "create_app.sh" \
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.9.11
1+
1.9.12

seednode/src/main/java/bisq/seednode/SeedNodeMain.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
@Slf4j
5151
public class SeedNodeMain extends ExecutableForAppWithP2p {
5252
private static final long CHECK_CONNECTION_LOSS_SEC = 30;
53-
private static final String VERSION = "1.9.11";
53+
private static final String VERSION = "1.9.12";
5454
private SeedNode seedNode;
5555
private Timer checkConnectionLossTime;
5656

0 commit comments

Comments
 (0)