Skip to content

Commit 07a6eb7

Browse files
committed
backend: update to version 4.47.3
1 parent d54ccec commit 07a6eb7

File tree

7 files changed

+10
-14
lines changed

7 files changed

+10
-14
lines changed

CHANGELOG.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# Changelog
22

3-
## Unreleased
4-
- Reduced support for BitBox01
5-
- Fix a bug that would prevent the app to perform firmware upgrade when offline.
6-
73
# v4.47.3
84
- Upgrade Etherscan API to V2
95

backend/update.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const updateFileURL = "https://bitboxapp.shiftcrypto.io/desktop.json"
2727

2828
var (
2929
// Version of the backend as displayed to the user.
30-
Version = semver.NewSemVer(4, 47, 2)
30+
Version = semver.NewSemVer(4, 47, 3)
3131
)
3232

3333
// UpdateFile is retrieved from the server.

frontends/android/BitBoxApp/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId "ch.shiftcrypto.bitboxapp"
88
minSdkVersion 21
99
targetSdkVersion 34
10-
versionCode 59
11-
versionName "android-4.47.0"
10+
versionCode 60
11+
versionName "android-4.47.3"
1212
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1313
}
1414
buildTypes {

frontends/ios/BitBoxApp/Config.xcconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// https://help.apple.com/xcode/#/dev745c5c974
33

44
// App version
5-
MARKETING_VERSION = 4.47.0
5+
MARKETING_VERSION = 4.47.3
66

77
// Build number, increment this for every separate publication,
88
// even if the app version is the same.
9-
CURRENT_PROJECT_VERSION = 7
9+
CURRENT_PROJECT_VERSION = 8

frontends/qt/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ linux:
5050
cp resources/linux/usr/share/icons/hicolor/128x128/apps/bitbox.png build/linux-tmp
5151
mkdir build/tmp-deb/opt/
5252
cp -aR build/linux-tmp build/tmp-deb/opt/bitbox
53-
cd build/linux && fpm --after-install ../../resources/deb-afterinstall.sh -s dir -t deb -n bitbox -v 4.47.2 -C ../tmp-deb/
54-
cd build/linux && fpm --after-install ../../resources/deb-afterinstall.sh -s dir -t rpm -n bitbox -v 4.47.2 -C ../tmp-deb/
53+
cd build/linux && fpm --after-install ../../resources/deb-afterinstall.sh -s dir -t deb -n bitbox -v 4.47.3 -C ../tmp-deb/
54+
cd build/linux && fpm --after-install ../../resources/deb-afterinstall.sh -s dir -t rpm -n bitbox -v 4.47.3 -C ../tmp-deb/
5555
# create AppImage
5656
cd build/linux-tmp && /opt/linuxdeployqt-continuous-x86_64.AppImage BitBox -appimage -unsupported-allow-new-glibc
5757
mv build/linux-tmp/BitBoxApp-*-x86_64.AppImage build/linux/

frontends/qt/resources/MacOS/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
<string>APPL</string>
2222

2323
<key>CFBundleVersion</key>
24-
<string>4.47.0</string>
24+
<string>4.47.3</string>
2525

2626
<key>CFBundleShortVersionString</key>
27-
<string>4.47.0</string>
27+
<string>4.47.3</string>
2828

2929
<key>CFBundleSignature</key>
3030
<string>????</string>

frontends/qt/setup.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ SetCompressor /SOLID lzma
2222

2323
# General Symbol Definitions
2424
!define REGKEY "SOFTWARE\$(^Name)"
25-
!define VERSION 4.47.0.0
25+
!define VERSION 4.47.3.0
2626
!define COMPANY "Shift Crypto AG"
2727
!define URL https://github.com/BitBoxSwiss/bitbox-wallet-app/releases/
2828
!define BINDIR "build\windows"

0 commit comments

Comments
 (0)