diff --git a/.github/last-release-runid b/.github/last-release-runid index 8f1dcb5058a..c6570af72d6 100644 --- a/.github/last-release-runid +++ b/.github/last-release-runid @@ -1 +1 @@ -8973529029 +8990844133 diff --git a/CHANGELOG.md b/CHANGELOG.md index 8752e95e271..5cabc078489 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 8.25.2 ### Fixes diff --git a/Package.swift b/Package.swift index 69dbb251698..84f5b23ce80 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.25.1/Sentry.xcframework.zip", - checksum: "f442451cc6f0044285fff1ec7b246a082df25a3df251f73d2a1ee76f18da3727" //Sentry-Static + url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.25.2/Sentry.xcframework.zip", + checksum: "4acd02e62811f9df5d483090edbce292b77c22df1f3c0002733e42a44c61f197" //Sentry-Static ), .binaryTarget( name: "Sentry-Dynamic", - url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.25.1/Sentry-Dynamic.xcframework.zip", - checksum: "4ecac777160fc4e84cbfa1355ca734a579d4486f484d23efedc72afa9a0cd2e2" //Sentry-Dynamic + url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.25.2/Sentry-Dynamic.xcframework.zip", + checksum: "3184d4ab132a1f5ea99b7fe77270cb6ec0784024e91397a3fd7c4780a38e177a" //Sentry-Dynamic ), .target ( name: "SentrySwiftUI", dependencies: ["Sentry", "SentryInternal"], diff --git a/Samples/iOS-Swift/iOS-Swift.xcodeproj/project.pbxproj b/Samples/iOS-Swift/iOS-Swift.xcodeproj/project.pbxproj index 2c1c03033cd..626fd5e8ad0 100644 --- a/Samples/iOS-Swift/iOS-Swift.xcodeproj/project.pbxproj +++ b/Samples/iOS-Swift/iOS-Swift.xcodeproj/project.pbxproj @@ -1248,7 +1248,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 8.25.1; + MARKETING_VERSION = 8.25.2; PRODUCT_BUNDLE_IDENTIFIER = "io.sentry.sample.iOS-Swift"; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = "match Development io.sentry.sample.iOS-Swift"; @@ -1277,7 +1277,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 8.25.1; + MARKETING_VERSION = 8.25.2; PRODUCT_BUNDLE_IDENTIFIER = "io.sentry.sample.iOS-Swift"; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = "match AppStore io.sentry.sample.iOS-Swift"; @@ -1926,7 +1926,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 8.25.1; + MARKETING_VERSION = 8.25.2; PRODUCT_BUNDLE_IDENTIFIER = "io.sentry.sample.iOS-Swift.Clip"; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = "match Development io.sentry.sample.iOS-Swift.Clip"; @@ -1961,7 +1961,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 8.25.1; + MARKETING_VERSION = 8.25.2; PRODUCT_BUNDLE_IDENTIFIER = "io.sentry.sample.iOS-Swift.Clip"; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = "match AppStore io.sentry.sample.iOS-Swift.Clip"; diff --git a/Sentry.podspec b/Sentry.podspec index 0a494d84142..90a9fb4af75 100644 --- a/Sentry.podspec +++ b/Sentry.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Sentry" - s.version = "8.25.1" + s.version = "8.25.2" 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 399100a4fa4..52cf87b879c 100644 --- a/SentryPrivate.podspec +++ b/SentryPrivate.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SentryPrivate" - s.version = "8.25.1" + s.version = "8.25.2" 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 a56b17e2c8d..b86ad948b3f 100644 --- a/SentrySwiftUI.podspec +++ b/SentrySwiftUI.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SentrySwiftUI" - s.version = "8.25.1" + s.version = "8.25.2" 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.25.1" + s.dependency 'Sentry', "8.25.2" end diff --git a/Sources/Configuration/Sentry.xcconfig b/Sources/Configuration/Sentry.xcconfig index de792f82e42..00ba15ad0b4 100644 --- a/Sources/Configuration/Sentry.xcconfig +++ b/Sources/Configuration/Sentry.xcconfig @@ -2,7 +2,7 @@ PRODUCT_NAME = Sentry INFOPLIST_FILE = Sources/Resources/Info.plist PRODUCT_BUNDLE_IDENTIFIER = io.sentry.Sentry -CURRENT_PROJECT_VERSION = 8.25.1 +CURRENT_PROJECT_VERSION = 8.25.2 MODULEMAP_FILE = $(SRCROOT)/Sources/Resources/Sentry.modulemap diff --git a/Sources/Sentry/SentryMeta.m b/Sources/Sentry/SentryMeta.m index b59a383d348..4b27fb48621 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.25.1"; +static NSString *versionString = @"8.25.2"; static NSString *sdkName = @"sentry.cocoa"; + (NSString *)versionString diff --git a/Tests/HybridSDKTest/HybridPod.podspec b/Tests/HybridSDKTest/HybridPod.podspec index 99f4728233f..5421f878b80 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.25.1" + s.dependency "Sentry/HybridSDK", "8.25.2" s.source_files = "HybridTest.swift" end