From 0c34e4da899a1dd9183db04082d1ceb6e9c2b301 Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Thu, 30 Jan 2025 15:36:42 +0000 Subject: [PATCH] release: 8.44.0 --- .github/last-release-runid | 2 +- CHANGELOG.md | 2 +- Package.swift | 8 ++++---- Sentry.podspec | 2 +- SentryPrivate.podspec | 2 +- SentrySwiftUI.podspec | 4 ++-- Sources/Sentry/SentryMeta.m | 2 +- Tests/HybridSDKTest/HybridPod.podspec | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/last-release-runid b/.github/last-release-runid index 533e52394d..be4cec2af8 100644 --- a/.github/last-release-runid +++ b/.github/last-release-runid @@ -1 +1 @@ -12888505291 +13055337413 diff --git a/CHANGELOG.md b/CHANGELOG.md index 5389006c1a..6d8b7f0354 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 8.44.0 ### Fixes diff --git a/Package.swift b/Package.swift index ae5d64ec3f..2996989827 100644 --- a/Package.swift +++ b/Package.swift @@ -12,13 +12,13 @@ let package = Package( targets: [ .binaryTarget( name: "Sentry", - url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.44.0-beta.1/Sentry.xcframework.zip", - checksum: "9609a62e9b25df4f8f0fe401992427efc68c9964d69a8817d0d68de4cd56d937" //Sentry-Static + url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.44.0/Sentry.xcframework.zip", + checksum: "78388f70054b713bf251ab6df61f2b7b900c093cbfb23c91cc91b52f26016a8b" //Sentry-Static ), .binaryTarget( name: "Sentry-Dynamic", - url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.44.0-beta.1/Sentry-Dynamic.xcframework.zip", - checksum: "1535921c7ca98cd84c50a9dec12847679fc405504544e83e5de23465d21a10d8" //Sentry-Dynamic + url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.44.0/Sentry-Dynamic.xcframework.zip", + checksum: "28ece75e6a8e0e0f5ed00ff4b7ef3a7dcc379747239f9a1aded9838e6a0a0dc6" //Sentry-Dynamic ), .target ( name: "SentrySwiftUI", dependencies: ["Sentry", "SentryInternal"], diff --git a/Sentry.podspec b/Sentry.podspec index 95634fb509..c188f721de 100644 --- a/Sentry.podspec +++ b/Sentry.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Sentry" - s.version = "8.44.0-beta.1" + s.version = "8.44.0" s.summary = "Sentry client for cocoa" s.homepage = "https://github.com/getsentry/sentry-cocoa" s.license = "mit" diff --git a/SentryPrivate.podspec b/SentryPrivate.podspec index 652ce842a8..bafc21ed79 100644 --- a/SentryPrivate.podspec +++ b/SentryPrivate.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SentryPrivate" - s.version = "8.44.0-beta.1" + s.version = "8.44.0" s.summary = "Sentry Private Library." s.homepage = "https://github.com/getsentry/sentry-cocoa" s.license = "mit" diff --git a/SentrySwiftUI.podspec b/SentrySwiftUI.podspec index 5f85f2c946..2f5c685203 100644 --- a/SentrySwiftUI.podspec +++ b/SentrySwiftUI.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SentrySwiftUI" - s.version = "8.44.0-beta.1" + s.version = "8.44.0" s.summary = "Sentry client for SwiftUI" s.homepage = "https://github.com/getsentry/sentry-cocoa" s.license = "mit" @@ -19,5 +19,5 @@ Pod::Spec.new do |s| s.watchos.framework = 'WatchKit' s.source_files = "Sources/SentrySwiftUI/**/*.{swift,h,m}" - s.dependency 'Sentry', "8.44.0-beta.1" + s.dependency 'Sentry', "8.44.0" end diff --git a/Sources/Sentry/SentryMeta.m b/Sources/Sentry/SentryMeta.m index 4394d8ff8e..8929e4c814 100644 --- a/Sources/Sentry/SentryMeta.m +++ b/Sources/Sentry/SentryMeta.m @@ -5,7 +5,7 @@ @implementation SentryMeta // Don't remove the static keyword. If you do the compiler adds the constant name to the global // symbol table and it might clash with other constants. When keeping the static keyword the // compiler replaces all occurrences with the value. -static NSString *versionString = @"8.44.0-beta.1"; +static NSString *versionString = @"8.44.0"; static NSString *sdkName = @"sentry.cocoa"; + (NSString *)versionString diff --git a/Tests/HybridSDKTest/HybridPod.podspec b/Tests/HybridSDKTest/HybridPod.podspec index 21982bcbce..8f73d6cf4b 100644 --- a/Tests/HybridSDKTest/HybridPod.podspec +++ b/Tests/HybridSDKTest/HybridPod.podspec @@ -13,6 +13,6 @@ Pod::Spec.new do |s| s.requires_arc = true s.frameworks = 'Foundation' s.swift_versions = "5.5" - s.dependency "Sentry/HybridSDK", "8.44.0-beta.1" + s.dependency "Sentry/HybridSDK", "8.44.0" s.source_files = "HybridTest.swift" end