Skip to content

Commit 9174496

Browse files
committed
release: 8.54.1-alpha.2
1 parent dba4ee8 commit 9174496

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

.github/last-release-runid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16895282346
1+
16943271959

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.2
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: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ var products: [Product] = [
1919
var targets: [Target] = [
2020
.binaryTarget(
2121
name: "Sentry",
22-
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.54.1-alpha.1/Sentry.xcframework.zip",
23-
checksum: "dd40d912578d1e5567a25fdc393958189fd4e82c33e03165df7b4db98c378968" //Sentry-Static
22+
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.54.1-alpha.2/Sentry.xcframework.zip",
23+
checksum: "badbe2cfe3339d2743a2e85ae4df7dfe641621d28f8d2afbe9fe1b2b9fcebd05" //Sentry-Static
2424
),
2525
.binaryTarget(
2626
name: "Sentry-Dynamic",
27-
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.54.1-alpha.1/Sentry-Dynamic.xcframework.zip",
28-
checksum: "b648c18fe2e57be90d43740003a92601eeab1c6d0e33bd29cb321cc09783bac2" //Sentry-Dynamic
27+
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.54.1-alpha.2/Sentry-Dynamic.xcframework.zip",
28+
checksum: "c6a5439069127a8eec7af3530950a8a566210b02a8bef4a40f2df4428b5de9b2" //Sentry-Dynamic
2929
),
3030
.binaryTarget(
3131
name: "Sentry-Dynamic-WithARM64e",
32-
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.54.1-alpha.1/Sentry-Dynamic-WithARM64e.xcframework.zip",
33-
checksum: "2625b02516b00127d92e4ddc0ae59dec90f87114a5956c484d8906b7d049856e" //Sentry-Dynamic-WithARM64e
32+
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.54.1-alpha.2/Sentry-Dynamic-WithARM64e.xcframework.zip",
33+
checksum: "307656cc0502ddd1067bb5dcf3bd026f626e0f6b33caa0e6cd9cac3f5088a427" //Sentry-Dynamic-WithARM64e
3434
),
3535
.target (
3636
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.1-alpha.1"
3+
s.version = "8.54.1-alpha.2"
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.1-alpha.1"
3+
s.version = "8.54.1-alpha.2"
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.1-alpha.1"
3+
s.version = "8.54.1-alpha.2"
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.1-alpha.1"
22+
s.dependency 'Sentry/HybridSDK', "8.54.1-alpha.2"
2323
end

Sources/Sentry/SentryMeta.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ @implementation SentryMeta
55
// Don't remove the static keyword. If you do the compiler adds the constant name to the global
66
// symbol table and it might clash with other constants. When keeping the static keyword the
77
// compiler replaces all occurrences with the value.
8-
static NSString *versionString = @"8.54.1-alpha.1";
8+
static NSString *versionString = @"8.54.1-alpha.2";
99
static NSString *sdkName = @"sentry.cocoa";
1010

1111
+ (NSString *)versionString

Tests/HybridSDKTest/HybridPod.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ Pod::Spec.new do |s|
1313
s.requires_arc = true
1414
s.frameworks = 'Foundation'
1515
s.swift_versions = "5.5"
16-
s.dependency "Sentry/HybridSDK", "8.54.1-alpha.1"
16+
s.dependency "Sentry/HybridSDK", "8.54.1-alpha.2"
1717
s.source_files = "HybridTest.swift"
1818
end

0 commit comments

Comments
 (0)