Skip to content

Commit 6278c88

Browse files
committed
release: 8.56.0-alpha.2
1 parent 52603c5 commit 6278c88

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

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

0 commit comments

Comments
 (0)