1
0
Fork 0
mirror of https://github.com/bisq-network/bisq.git synced 2025-03-13 19:16:43 +01:00

Bump version number for v1.9.16

This commit is contained in:
Alejandro García 2024-05-24 17:40:00 +02:00
parent 53e87ec795
commit e0b6a2cbb4
No known key found for this signature in database
GPG key ID: F806F422E222AA02
8 changed files with 10 additions and 10 deletions
build-logic/packaging/src/main/kotlin/bisq/gradle/packaging
common/src/main/java/bisq/common/app
desktop
seednode/src/main/java/bisq/seednode

View file

@ -22,7 +22,7 @@ import javax.inject.Inject
class PackagingPlugin @Inject constructor(private val javaToolchainService: JavaToolchainService) : Plugin<Project> { class PackagingPlugin @Inject constructor(private val javaToolchainService: JavaToolchainService) : Plugin<Project> {
companion object { companion object {
const val APP_VERSION = "1.9.15" const val APP_VERSION = "1.9.16"
const val OUTPUT_DIR_PATH = "packaging/jpackage/packages" const val OUTPUT_DIR_PATH = "packaging/jpackage/packages"
} }

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 // 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 // Therefore all sub versions start again with 1
// We use semantic versioning with major, minor and patch // We use semantic versioning with major, minor and patch
public static final String VERSION = "1.9.15"; public static final String VERSION = "1.9.16";
/** /**
* Holds a list of the tagged resource files for optimizing the getData requests. * Holds a list of the tagged resource files for optimizing the getData requests.

View file

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

View file

@ -2,7 +2,7 @@
cd $(dirname $0)/../../../ cd $(dirname $0)/../../../
version="1.9.15" version="1.9.16"
# Set BISQ_DIR as environment var to the path of your locally synced Bisq data directory e.g. BISQ_DIR=~/Library/Application\ Support/Bisq # 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 ../../ cd ../../
version="1.9.15-SNAPSHOT" version="1.9.16"
target_dir="releases/$version" target_dir="releases/$version"

View file

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

View file

@ -1 +1 @@
1.9.15-SNAPSHOT 1.9.16

View file

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