Skip to content

Commit f4d442e

Browse files
committed
release: 8.54.1-alpha.0
1 parent c558945 commit f4d442e

File tree

11 files changed

+17
-17
lines changed

11 files changed

+17
-17
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

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 is not allowing individual frameworks to contain arm64e slices anymore if the main binary doesn't contain it.

Package.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +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
2828
),
2929
.binaryTarget(
3030
name: "Sentry-Dynamic-WithARM64e",
31-
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.54.0/Sentry-Dynamic-WithARM64e.xcframework.zip",
32-
checksum: "PLACEHOLDER" //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
3333
),
3434
.target (
3535
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
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
CURRENT_PROJECT_VERSION = 1
2-
MARKETING_VERSION = 8.54.0
2+
MARKETING_VERSION = 8.54.1

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.0";
8+
static NSString *versionString = @"8.54.1-alpha.0";
99
static NSString *sdkName = @"sentry.cocoa";
1010

1111
+ (NSString *)versionString

0 commit comments

Comments
 (0)