mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
Bump version number for v1.9.14
This commit is contained in:
parent
2f09f8a875
commit
381e44ee14
@ -22,7 +22,7 @@ import javax.inject.Inject
|
||||
class PackagingPlugin @Inject constructor(private val javaToolchainService: JavaToolchainService) : Plugin<Project> {
|
||||
|
||||
companion object {
|
||||
const val APP_VERSION = "1.9.13"
|
||||
const val APP_VERSION = "1.9.14"
|
||||
const val OUTPUT_DIR_PATH = "packaging/jpackage/packages"
|
||||
}
|
||||
|
||||
|
@ -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.13";
|
||||
public static final String VERSION = "1.9.14";
|
||||
|
||||
/**
|
||||
* Holds a list of the tagged resource files for optimizing the getData requests.
|
||||
|
@ -5,10 +5,10 @@
|
||||
<!-- See: https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -->
|
||||
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.9.13</string>
|
||||
<string>1.9.14</string>
|
||||
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.9.13</string>
|
||||
<string>1.9.14</string>
|
||||
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>Bisq</string>
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
cd $(dirname $0)/../../../
|
||||
|
||||
version="1.9.13"
|
||||
version="1.9.14"
|
||||
|
||||
# Set BISQ_DIR as environment var to the path of your locally synced Bisq data directory e.g. BISQ_DIR=~/Library/Application\ Support/Bisq
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
cd ../../
|
||||
|
||||
version="1.9.13-SNAPSHOT"
|
||||
version="1.9.14"
|
||||
|
||||
target_dir="releases/$version"
|
||||
|
||||
|
@ -2,8 +2,8 @@
|
||||
|
||||
cd $(dirname $0)/../../../.
|
||||
|
||||
oldVersion=1.9.12
|
||||
newVersion=1.9.13
|
||||
oldVersion=1.9.13
|
||||
newVersion=1.9.14
|
||||
|
||||
find . -type f \( -name "finalize.sh" \
|
||||
-o -name "create_app.sh" \
|
||||
@ -13,12 +13,12 @@ find . -type f \( -name "finalize.sh" \
|
||||
-o -name "release.sh" \
|
||||
-o -name "package.sh" \
|
||||
-o -name "version.txt" \
|
||||
\) -exec sed -i '' s/"$oldVersion-SNAPSHOT"/$newVersion/ {} +
|
||||
\) -exec sed -i s/"$oldVersion-SNAPSHOT"/$newVersion/ {} +
|
||||
|
||||
find . -type f \( -name "Info.plist" \
|
||||
-o -name "PackagingPlugin.kt" \
|
||||
-o -name "SeedNodeMain.java" \
|
||||
-o -name "Version.java" \
|
||||
-o -name "copy_dbs.sh" \
|
||||
\) -exec sed -i '' s/$oldVersion/$newVersion/ {} +
|
||||
\) -exec sed -i s/$oldVersion/$newVersion/ {} +
|
||||
|
||||
|
@ -1 +1 @@
|
||||
1.9.13-SNAPSHOT
|
||||
1.9.14
|
||||
|
@ -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.13";
|
||||
private static final String VERSION = "1.9.14";
|
||||
private SeedNode seedNode;
|
||||
private Timer checkConnectionLossTime;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user