Merge pull request #6768 from bisq-network/release/v1.9.12

Release/v1.9.12
This commit is contained in:
Gabriel Bernard 2023-07-13 15:32:56 +00:00 committed by GitHub
commit bacc72df85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 13 additions and 12 deletions

View File

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

View File

@ -48,7 +48,7 @@ import lombok.extern.slf4j.Slf4j;
@Slf4j
@Singleton
public class BurningManAccountingStoreService extends StoreService<BurningManAccountingStore> {
private static final String FILE_NAME = "BurningManAccountingStore_v2";
private static final String FILE_NAME = "BurningManAccountingStore_v3";
private volatile boolean removeAllBlocksCalled;
@Inject
@ -67,6 +67,7 @@ public class BurningManAccountingStoreService extends StoreService<BurningManAcc
try {
// Delete old BurningManAccountingStore file which was missing some data.
FileUtil.deleteFileIfExists(Path.of(absolutePathOfStorageDir, "BurningManAccountingStore").toFile());
FileUtil.deleteFileIfExists(Path.of(absolutePathOfStorageDir, "BurningManAccountingStore_v2").toFile());
} catch (IOException e) {
throw new RuntimeException(e);
}

View File

@ -8,7 +8,7 @@
# pull base image
FROM openjdk:8-jdk
ENV version 1.9.11
ENV version 1.9.12-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

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.9.11</string>
<string>1.9.12</string>
<key>CFBundleShortVersionString</key>
<string>1.9.11</string>
<string>1.9.12</string>
<key>CFBundleExecutable</key>
<string>Bisq</string>

View File

@ -2,7 +2,7 @@
cd $(dirname $0)/../../../
version="1.9.11"
version="1.9.12"
# 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.9.11"
version="1.9.12-SNAPSHOT"
target_dir="releases/$version"

View File

@ -2,7 +2,7 @@
cd $(dirname $0)/../../../
version=1.9.10
version=1.9.12
find . -type f \( -name "finalize.sh" \
-o -name "create_app.sh" \

View File

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

View File

@ -1 +1 @@
1.9.11
1.9.12-SNAPSHOT

View File

@ -50,7 +50,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.11";
private static final String VERSION = "1.9.12";
private SeedNode seedNode;
private Timer checkConnectionLossTime;