Skip to content

Commit 67352e1

Browse files
committed
Merge remote-tracking branch 'benma/go122' into release-v4.46.1
2 parents 3e1929b + 758fcb9 commit 67352e1

File tree

12 files changed

+19
-16
lines changed

12 files changed

+19
-16
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ env:
2525
# https://docs.github.com/en/packages/guides/pushing-and-pulling-docker-images
2626
#
2727
# Keep this in sync with default in scripts/github-ci.sh.
28-
CI_IMAGE: ghcr.io/bitboxswiss/bitbox-wallet-app-ci:25
28+
CI_IMAGE: ghcr.io/bitboxswiss/bitbox-wallet-app-ci:26
2929
GITHUB_BUILD_DIR: ${{github.workspace}}
3030

3131
jobs:

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Unreleased
44

5+
# 4.46.1
6+
- Fix Android app crash on old Android versions
7+
58
# 4.46.0
69
- Android: enable export logs feature
710
- Label change UTXOs as "change" in coin control

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ catch:
2222
envinit:
2323
# Keep golangci-lint version in sync with what's in .github/workflows/ci.yml.
2424
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOPATH)/bin v1.61.0
25-
go install github.com/vektra/mockery/v2@latest
26-
go install github.com/matryer/moq@latest
25+
go install github.com/vektra/mockery/v2@v2.46.0
26+
go install github.com/matryer/moq@v0.4.0
2727
go install golang.org/x/tools/cmd/goimports@latest
2828
$(MAKE) gomobileinit
2929
gomobileinit:

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, 46, 0)
30+
Version = semver.NewSemVer(4, 46, 1)
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 55
11-
versionName "android-4.46.0"
10+
versionCode 56
11+
versionName "android-4.46.1"
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.46.0
5+
MARKETING_VERSION = 4.46.1
66

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

frontends/qt/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ linux:
3737
cp resources/linux/usr/share/icons/hicolor/128x128/apps/bitbox.png build/linux-tmp
3838
mkdir build/tmp-deb/opt/
3939
cp -aR build/linux-tmp build/tmp-deb/opt/bitbox
40-
cd build/linux && fpm --after-install ../../resources/deb-afterinstall.sh -s dir -t deb -n bitbox -v 4.46.0 -C ../tmp-deb/
41-
cd build/linux && fpm --after-install ../../resources/deb-afterinstall.sh -s dir -t rpm -n bitbox -v 4.46.0 -C ../tmp-deb/
40+
cd build/linux && fpm --after-install ../../resources/deb-afterinstall.sh -s dir -t deb -n bitbox -v 4.46.1 -C ../tmp-deb/
41+
cd build/linux && fpm --after-install ../../resources/deb-afterinstall.sh -s dir -t rpm -n bitbox -v 4.46.1 -C ../tmp-deb/
4242
# create AppImage
4343
cd build/linux-tmp && /opt/linuxdeployqt-continuous-x86_64.AppImage BitBox -appimage -unsupported-allow-new-glibc
4444
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.46.0</string>
24+
<string>4.46.1</string>
2525

2626
<key>CFBundleShortVersionString</key>
27-
<string>4.46.0</string>
27+
<string>4.46.1</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.46.0.0
25+
!define VERSION 4.46.1.0
2626
!define COMPANY "Shift Crypto AG"
2727
!define URL https://github.com/BitBoxSwiss/bitbox-wallet-app/releases/
2828
!define BINDIR "build\windows"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/BitBoxSwiss/bitbox-wallet-app
22

3-
go 1.23
3+
go 1.22
44

55
require (
66
github.com/BitBoxSwiss/bitbox02-api-go v0.0.0-20240925080402-a2115fee878e

scripts/docker_install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ npm install -g npm@10
8181
npm install -g locize-cli
8282

8383
mkdir -p /opt/go_dist
84-
curl https://dl.google.com/go/go1.23.2.linux-amd64.tar.gz | tar -xz -C /opt/go_dist
84+
curl https://dl.google.com/go/go1.22.4.linux-amd64.tar.gz | tar -xz -C /opt/go_dist
8585

8686
# fuse is needed to run the linuxdeployqt appimage.
8787
apt-get install -y --no-install-recommends fuse

scripts/github-ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if [ "$OS_NAME" == "linux" ]; then
1212
# Which docker image to use to run the CI. Defaults to Docker Hub.
1313
# Overwrite with CI_IMAGE=docker/image/path environment variable.
1414
# Keep this in sync with .github/workflows/ci.yml.
15-
: "${CI_IMAGE:=shiftcrypto/bitbox-wallet-app:25}"
15+
: "${CI_IMAGE:=shiftcrypto/bitbox-wallet-app:26}"
1616
# Time image pull to compare in the future.
1717
time docker pull "$CI_IMAGE"
1818

0 commit comments

Comments
 (0)