Skip to content

Commit fad8f23

Browse files
committed
release: 8.56.0-alpha.3
1 parent 5cbd333 commit fad8f23

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-
17667020095
1+
17674303183

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.56.0-alpha.3
44

55
### Fixes
66

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.56.0-alpha.2/Sentry.xcframework.zip",
23-
checksum: "c892c35431cf50bd99285009861c03018057075c464133868235d6503517754a" //Sentry-Static
22+
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.56.0-alpha.3/Sentry.xcframework.zip",
23+
checksum: "a78d6d16cbad0e21218c3816929d12391277e3db9bee862f986212e1cb0ef694" //Sentry-Static
2424
),
2525
.binaryTarget(
2626
name: "Sentry-Dynamic",
27-
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.56.0-alpha.2/Sentry-Dynamic.xcframework.zip",
28-
checksum: "3558e7ffe0bc7c426f7eddc9b01e74987c72e1c5322876bd9c438a58cbc8cd5a" //Sentry-Dynamic
27+
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.56.0-alpha.3/Sentry-Dynamic.xcframework.zip",
28+
checksum: "d70a5deffe9db7fd755e001e96a080956022136496dbf83ce56eb5af8f550a1d" //Sentry-Dynamic
2929
),
3030
.binaryTarget(
3131
name: "Sentry-Dynamic-WithARM64e",
32-
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.56.0-alpha.2/Sentry-Dynamic-WithARM64e.xcframework.zip",
33-
checksum: "c4d87b0e1233a8b22c765402c4ca23531f6f46a96041cbc5eab1d53dc03e1790" //Sentry-Dynamic-WithARM64e
32+
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.56.0-alpha.3/Sentry-Dynamic-WithARM64e.xcframework.zip",
33+
checksum: "5a7eb7c6e6d49bb90e252d946f3e03477597d40604a860bbec74ee5aaf2d4272" //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.56.0-alpha.2"
3+
s.version = "8.56.0-alpha.3"
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.56.0-alpha.2"
3+
s.version = "8.56.0-alpha.3"
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.56.0-alpha.2"
3+
s.version = "8.56.0-alpha.3"
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.56.0-alpha.2"
22+
s.dependency 'Sentry/HybridSDK', "8.56.0-alpha.3"
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.56.0-alpha.2";
8+
static NSString *versionString = @"8.56.0-alpha.3";
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.56.0-alpha.2"
16+
s.dependency "Sentry/HybridSDK", "8.56.0-alpha.3"
1717
s.source_files = "HybridTest.swift"
1818
end

0 commit comments

Comments
 (0)