Skip to content

Commit f62692f

Browse files
committed
release: 8.53.0
1 parent 63ac649 commit f62692f

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

.github/last-release-runid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
15872115030
1+
15875805249

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.53.0
44

55
### Features
66

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ var products: [Product] = [
1111
var targets: [Target] = [
1212
.binaryTarget(
1313
name: "Sentry",
14-
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.53.0-alpha.0/Sentry.xcframework.zip",
15-
checksum: "d1eadfaac4188bca46b461be4ef1ee87a341f9a36e8a3c313b5cc5f7a7fe9aa2" //Sentry-Static
14+
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.53.0/Sentry.xcframework.zip",
15+
checksum: "ceb6fdf396ba3cdcaaecc13dce88da7ccdd293bed19cc145c7bc91a3136dba72" //Sentry-Static
1616
),
1717
.binaryTarget(
1818
name: "Sentry-Dynamic",
19-
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.53.0-alpha.0/Sentry-Dynamic.xcframework.zip",
20-
checksum: "66c6c4a23dc1c0f93f96ccdfe065de33824371bef55bcebca1851172dc7471c3" //Sentry-Dynamic
19+
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.53.0/Sentry-Dynamic.xcframework.zip",
20+
checksum: "d8c9431e8025e0f1307ca5c97924848be5239d978a25793e49d7b427fbca16e4" //Sentry-Dynamic
2121
),
2222
.target (
2323
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.53.0-alpha.0"
3+
s.version = "8.53.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.53.0-alpha.0"
3+
s.version = "8.53.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.53.0-alpha.0"
3+
s.version = "8.53.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.53.0-alpha.0"
22+
s.dependency 'Sentry/HybridSDK', "8.53.0"
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.53.0-alpha.0";
8+
static NSString *versionString = @"8.53.0";
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.53.0-alpha.0"
16+
s.dependency "Sentry/HybridSDK", "8.53.0"
1717
s.source_files = "HybridTest.swift"
1818
end

0 commit comments

Comments
 (0)