From cc0f80901cb5b21076b8f0e6190c2b98e387a7c3 Mon Sep 17 00:00:00 2001 From: Andrew McKnight Date: Fri, 10 Jan 2025 03:18:02 -0900 Subject: [PATCH 1/2] chore(ci): make xcbeautify quieter (#4653) Co-authored-by: Philipp Hofmann --- scripts/xcode-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/xcode-test.sh b/scripts/xcode-test.sh index e1ed20e7dd..30cabb5755 100755 --- a/scripts/xcode-test.sh +++ b/scripts/xcode-test.sh @@ -110,6 +110,6 @@ if [ $RUN_TEST_WITHOUT_BUILDING == true ]; then -destination "$DESTINATION" \ test-without-building 2>&1 | tee raw-test-output.log | - xcbeautify && + xcbeautify --quieter --renderer github-actions && slather coverage --configuration "$CONFIGURATION" fi From 3bcda69c2d376855a2442e50009bfb3d65eb4352 Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Fri, 10 Jan 2025 13:11:31 +0000 Subject: [PATCH 2/2] release: 8.43.1-beta.0 --- .github/last-release-runid | 2 +- CHANGELOG.md | 2 +- Package.swift | 8 ++++---- Samples/iOS-Swift/iOS-Swift/Sample.xcconfig | 2 +- Sentry.podspec | 2 +- SentryPrivate.podspec | 2 +- SentrySwiftUI.podspec | 4 ++-- Sources/Configuration/SDK.xcconfig | 2 +- Sources/Configuration/SentrySwiftUI.xcconfig | 2 +- Sources/Sentry/SentryMeta.m | 2 +- Tests/HybridSDKTest/HybridPod.podspec | 2 +- 11 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/last-release-runid b/.github/last-release-runid index de043f6b3f..afc6f8581a 100644 --- a/.github/last-release-runid +++ b/.github/last-release-runid @@ -1 +1 @@ -12584459349 +12709879191 diff --git a/CHANGELOG.md b/CHANGELOG.md index 65d8c5c336..d4a1352431 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 8.43.1-beta.0 ### Fixes diff --git a/Package.swift b/Package.swift index c385a7d27e..8bb8a71d92 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.43.0/Sentry.xcframework.zip", - checksum: "18b16b651630b865a91d6cf527ef79363156386e3e8568ae15d5d8718267d535" //Sentry-Static + url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.43.1-beta.0/Sentry.xcframework.zip", + checksum: "abc3ceb746f5acf3edb05410fbe7965adbe5114af55a5ae6397426da68aae134" //Sentry-Static ), .binaryTarget( name: "Sentry-Dynamic", - url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.43.0/Sentry-Dynamic.xcframework.zip", - checksum: "8da7680ad34c360503bc0d91ee4a8a690c44100066d913c601cd701a97e21c94" //Sentry-Dynamic + url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.43.1-beta.0/Sentry-Dynamic.xcframework.zip", + checksum: "5b813de64be17d0c1576d6495a15b863e0e14dd631e07dcbd564f3f2825570d6" //Sentry-Dynamic ), .target ( name: "SentrySwiftUI", dependencies: ["Sentry", "SentryInternal"], diff --git a/Samples/iOS-Swift/iOS-Swift/Sample.xcconfig b/Samples/iOS-Swift/iOS-Swift/Sample.xcconfig index 53b2a3f20e..fbc184998c 100644 --- a/Samples/iOS-Swift/iOS-Swift/Sample.xcconfig +++ b/Samples/iOS-Swift/iOS-Swift/Sample.xcconfig @@ -1 +1 @@ -MARKETING_VERSION = 8.43.0 +MARKETING_VERSION = 8.43.1 diff --git a/Sentry.podspec b/Sentry.podspec index 4e0db10804..f7e5c69b67 100644 --- a/Sentry.podspec +++ b/Sentry.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Sentry" - s.version = "8.43.0" + s.version = "8.43.1-beta.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 1e559c33c6..721246fbc9 100644 --- a/SentryPrivate.podspec +++ b/SentryPrivate.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SentryPrivate" - s.version = "8.43.0" + s.version = "8.43.1-beta.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 e4cbb24b23..5dc4d199e0 100644 --- a/SentrySwiftUI.podspec +++ b/SentrySwiftUI.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SentrySwiftUI" - s.version = "8.43.0" + s.version = "8.43.1-beta.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.43.0" + s.dependency 'Sentry', "8.43.1-beta.0" end diff --git a/Sources/Configuration/SDK.xcconfig b/Sources/Configuration/SDK.xcconfig index 6f59179863..a2cd0a4743 100644 --- a/Sources/Configuration/SDK.xcconfig +++ b/Sources/Configuration/SDK.xcconfig @@ -10,7 +10,7 @@ DYLIB_INSTALL_NAME_BASE = @rpath MACH_O_TYPE = mh_dylib FRAMEWORK_VERSION = A -CURRENT_PROJECT_VERSION = 8.43.0 +CURRENT_PROJECT_VERSION = 8.43.1 ALWAYS_SEARCH_USER_PATHS = NO CLANG_ENABLE_OBJC_ARC = YES diff --git a/Sources/Configuration/SentrySwiftUI.xcconfig b/Sources/Configuration/SentrySwiftUI.xcconfig index b119230f30..0aabf7f92e 100644 --- a/Sources/Configuration/SentrySwiftUI.xcconfig +++ b/Sources/Configuration/SentrySwiftUI.xcconfig @@ -1,5 +1,5 @@ PRODUCT_NAME = SentrySwiftUI -CURRENT_PROJECT_VERSION = 8.43.0 +CURRENT_PROJECT_VERSION = 8.43.1 MACOSX_DEPLOYMENT_TARGET = 10.15 IPHONEOS_DEPLOYMENT_TARGET = 13.0 diff --git a/Sources/Sentry/SentryMeta.m b/Sources/Sentry/SentryMeta.m index aa301a13d2..2451d64cdc 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.43.0"; +static NSString *versionString = @"8.43.1-beta.0"; static NSString *sdkName = @"sentry.cocoa"; + (NSString *)versionString diff --git a/Tests/HybridSDKTest/HybridPod.podspec b/Tests/HybridSDKTest/HybridPod.podspec index 1b283db338..eaa7065e24 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.43.0" + s.dependency "Sentry/HybridSDK", "8.43.1-beta.0" s.source_files = "HybridTest.swift" end