Skip to content

Commit

Permalink
Merge pull request #5626 from bisq-network/release/v1.7.1
Browse files Browse the repository at this point in the history
Release/v1.7.1
  • Loading branch information
ripcurlx authored Jul 16, 2021
2 parents dddabe3 + ef5ff12 commit c2b0ca9
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ configure(project(':desktop')) {
modules = ['javafx.controls', 'javafx.fxml']
}

version = '1.7.0-SNAPSHOT'
version = '1.7.1-SNAPSHOT'

jar.manifest.attributes(
"Implementation-Title": project.name,
Expand Down
2 changes: 1 addition & 1 deletion common/src/main/java/bisq/common/app/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,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.7.0";
public static final String VERSION = "1.7.1";

/**
* Holds a list of the tagged resource files for optimizing the getData requests.
Expand Down
2 changes: 1 addition & 1 deletion desktop/package/linux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

# pull base image
FROM openjdk:8-jdk
ENV version 1.7.0-SNAPSHOT
ENV version 1.7.1-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
Expand Down
4 changes: 2 additions & 2 deletions desktop/package/macosx/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
<!-- See: https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -->

<key>CFBundleVersion</key>
<string>1.7.0</string>
<string>1.7.1</string>

<key>CFBundleShortVersionString</key>
<string>1.7.0</string>
<string>1.7.1</string>

<key>CFBundleExecutable</key>
<string>Bisq</string>
Expand Down
2 changes: 1 addition & 1 deletion desktop/package/macosx/copy_dbs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

version="1.7.0"
version="1.7.1"

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

Expand Down
2 changes: 1 addition & 1 deletion desktop/package/macosx/finalize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

cd ../../

version="1.7.0-SNAPSHOT"
version="1.7.1-SNAPSHOT"

target_dir="releases/$version"

Expand Down
2 changes: 1 addition & 1 deletion desktop/package/macosx/insert_snapshot_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

version=1.7.0
version=1.7.1

find . -type f \( -name "finalize.sh" \
-o -name "create_app.sh" \
Expand Down
4 changes: 2 additions & 2 deletions desktop/package/macosx/replace_version_number.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

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

oldVersion=1.6.5
newVersion=1.7.0
oldVersion=1.7.0
newVersion=1.7.1

find . -type f \( -name "finalize.sh" \
-o -name "create_app.sh" \
Expand Down
2 changes: 1 addition & 1 deletion relay/src/main/resources/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.0-SNAPSHOT
1.7.1-SNAPSHOT
2 changes: 1 addition & 1 deletion seednode/src/main/java/bisq/seednode/SeedNodeMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
@Slf4j
public class SeedNodeMain extends ExecutableForAppWithP2p {
private static final long CHECK_CONNECTION_LOSS_SEC = 30;
private static final String VERSION = "1.7.0";
private static final String VERSION = "1.7.1";
private SeedNode seedNode;
private Timer checkConnectionLossTime;

Expand Down

0 comments on commit c2b0ca9

Please sign in to comment.