Skip to content

Commit ff36958

Browse files
Bump version number for v1.10.2
1 parent 622841b commit ff36958

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

build-logic/packaging/src/main/kotlin/bisq/gradle/packaging/PackagingPlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import javax.inject.Inject
2222
class PackagingPlugin @Inject constructor(private val javaToolchainService: JavaToolchainService) : Plugin<Project> {
2323

2424
companion object {
25-
const val APP_VERSION = "1.10.1"
25+
const val APP_VERSION = "1.10.2"
2626
const val OUTPUT_DIR_PATH = "packaging/jpackage/packages"
2727
}
2828

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.10.1";
39+
public static final String VERSION = "1.10.2";
4040

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

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.10.1</string>
8+
<string>1.10.2</string>
99

1010
<key>CFBundleShortVersionString</key>
11-
<string>1.10.1</string>
11+
<string>1.10.2</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.10.1"
5+
version="1.10.2"
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
@@ -3,7 +3,7 @@ set -e
33

44
cd ../../../
55

6-
version="1.10.1"
6+
version="1.10.2"
77

88
target_dir="desktop/releases/$version"
99

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.10.0
6-
newVersion=1.10.1
5+
oldVersion=1.10.1
6+
newVersion=1.10.2
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.10.1
1+
1.10.2

0 commit comments

Comments
 (0)