Skip to content

Commit 21efa18

Browse files
author
getsentry-bot
committed
Merge branch 'release/8.54.1-alpha.0'
2 parents ea2e54c + f4d442e commit 21efa18

15 files changed

+46
-16
lines changed

.github/last-release-runid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16626592739
1+
16840400773

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ jobs:
143143
run: |
144144
sed -i '' 's/url.*//g' Package.swift
145145
sed -i '' 's/checksum: ".*" \/\/Sentry-Static/path: "Sentry.xcframework.zip"/g' Package.swift
146+
sed -i '' 's/checksum: ".*" \/\/Sentry-Dynamic-WithARM64e/path: "Sentry-Dynamic-WithARM64e.xcframework.zip"/g' Package.swift
146147
sed -i '' 's/checksum: ".*" \/\/Sentry-Dynamic/path: "Sentry-Dynamic.xcframework.zip"/g' Package.swift
147148
shell: bash
148149
- run: swift build
@@ -162,6 +163,7 @@ jobs:
162163
run: |
163164
sed -i '' 's/url.*//g' Package.swift
164165
sed -i '' 's/checksum: ".*" \/\/Sentry-Static/path: "Sentry.xcframework.zip"/g' Package.swift
166+
sed -i '' 's/checksum: ".*" \/\/Sentry-Dynamic-WithARM64e/path: "Sentry-Dynamic-WithARM64e.xcframework.zip"/g' Package.swift
165167
sed -i '' 's/checksum: ".*" \/\/Sentry-Dynamic/path: "Sentry-Dynamic.xcframework.zip"/g' Package.swift
166168
shell: bash
167169
- run: swift build
@@ -181,6 +183,7 @@ jobs:
181183
run: |
182184
sed -i '' 's/url.*//g' Package.swift
183185
sed -i '' 's/checksum: ".*" \/\/Sentry-Static/path: "Sentry.xcframework.zip"/g' Package.swift
186+
sed -i '' 's/checksum: ".*" \/\/Sentry-Dynamic-WithARM64e/path: "Sentry-Dynamic-WithARM64e.xcframework.zip"/g' Package.swift
184187
sed -i '' 's/checksum: ".*" \/\/Sentry-Dynamic/path: "Sentry-Dynamic.xcframework.zip"/g' Package.swift
185188
shell: bash
186189
- run: swift build

.github/workflows/version-bump-util.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ jobs:
6565
mkdir -p Carthage
6666
echo "<FAKE STATIC ZIP>" > Carthage/Sentry.xcframework.zip
6767
echo "<FAKE DYNAMIC ZIP>" > Carthage/Sentry-Dynamic.xcframework.zip
68+
echo "<FAKE DYNAMIC WITH ARM64E ZIP>" > Carthage/Sentry-Dynamic-WithARM64e.xcframework.zip
6869
6970
- name: Bump version
7071
run: ./scripts/bump.sh ${{ steps.generate-version-number.outputs.OLD_VERSION }} ${{ steps.generate-version-number.outputs.NEW_VERSION }}
@@ -77,4 +78,5 @@ jobs:
7778
./scripts/verify-package-sha.sh \
7879
--static-checksum "7062a80f8a80f8b6d812698af87384751567a6aaa0df6f03b0596d728b22dcfd" \
7980
--dynamic-checksum "f6325cd8f05523d60222451fa61b3cd3d58148e5a21236f82abfd3f92750c87c" \
81+
--dynamic-with-arm64e-checksum "bbb84b054e5792aa705b95541aa4585f793e566a6b95638f8fef8e308d9782c3" \
8082
--last-release-runid "${{ github.run_id }}"

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 8.54.1-alpha.0
44

55
> [!Important]
66
> Xcode 26 no longer allows individual frameworks to contain arm64e slices anymore if the main binary doesn't contain them.

Package.swift

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,18 @@ var products: [Product] = [
1818
var targets: [Target] = [
1919
.binaryTarget(
2020
name: "Sentry",
21-
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.54.0/Sentry.xcframework.zip",
22-
checksum: "f0f4b5582f7fef029ddedd22b6b9894a6d2d31ea9c7b52a2133b1ec7c4cff206" //Sentry-Static
21+
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.54.1-alpha.0/Sentry.xcframework.zip",
22+
checksum: "302eef129d1d809cdb00f27cec8b44ec6e0e50ee023ac32b573382dec9fb54d4" //Sentry-Static
2323
),
2424
.binaryTarget(
2525
name: "Sentry-Dynamic",
26-
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.54.0/Sentry-Dynamic.xcframework.zip",
27-
checksum: "2cd3ee298133ed3a6d3b98f3b040e5c67b752887e67647ae671f450ecfd3facf" //Sentry-Dynamic
26+
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.54.1-alpha.0/Sentry-Dynamic.xcframework.zip",
27+
checksum: "93b776bccd573e5960550a14326a1953bc0fd565e9e126c50cdd6418442dbf14" //Sentry-Dynamic
28+
),
29+
.binaryTarget(
30+
name: "Sentry-Dynamic-WithARM64e",
31+
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.54.1-alpha.0/Sentry-Dynamic-WithARM64e.xcframework.zip",
32+
checksum: "63f9c4b3e0dcee86d5f43af44eaf1552a152672b36c65f3b3db3a551a629be33" //Sentry-Dynamic-WithARM64e
2833
),
2934
.target (
3035
name: "SentrySwiftUI",

Sentry.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Sentry"
3-
s.version = "8.54.0"
3+
s.version = "8.54.1-alpha.0"
44
s.summary = "Sentry client for cocoa"
55
s.homepage = "https://github.com/getsentry/sentry-cocoa"
66
s.license = "mit"

SentryPrivate.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SentryPrivate"
3-
s.version = "8.54.0"
3+
s.version = "8.54.1-alpha.0"
44
s.summary = "Sentry Private Library."
55
s.homepage = "https://github.com/getsentry/sentry-cocoa"
66
s.license = "mit"

SentrySwiftUI.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SentrySwiftUI"
3-
s.version = "8.54.0"
3+
s.version = "8.54.1-alpha.0"
44
s.summary = "Sentry client for SwiftUI"
55
s.homepage = "https://github.com/getsentry/sentry-cocoa"
66
s.license = "mit"
@@ -19,5 +19,5 @@ Pod::Spec.new do |s|
1919
s.watchos.framework = 'WatchKit'
2020

2121
s.source_files = "Sources/SentrySwiftUI/**/*.{swift,h,m}"
22-
s.dependency 'Sentry/HybridSDK', "8.54.0"
22+
s.dependency 'Sentry/HybridSDK', "8.54.1-alpha.0"
2323
end

Sources/Configuration/SDK.xcconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ DYLIB_INSTALL_NAME_BASE = @rpath
1010
MACH_O_TYPE = mh_dylib
1111
FRAMEWORK_VERSION = A
1212

13-
CURRENT_PROJECT_VERSION = 8.54.0
13+
CURRENT_PROJECT_VERSION = 8.54.1
1414

1515
ALWAYS_SEARCH_USER_PATHS = NO
1616
CLANG_ENABLE_OBJC_ARC = YES

Sources/Configuration/SentrySwiftUI.xcconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PRODUCT_NAME = SentrySwiftUI
2-
CURRENT_PROJECT_VERSION = 8.54.0
2+
CURRENT_PROJECT_VERSION = 8.54.1
33

44
MACOSX_DEPLOYMENT_TARGET = 10.15
55
IPHONEOS_DEPLOYMENT_TARGET = 13.0

0 commit comments

Comments
 (0)