Skip to content

Commit

Permalink
chore(deps): update Cocoa SDK to v8.17.2 (#163)
Browse files Browse the repository at this point in the history
* chore: update scripts/update-cocoa.sh to 8.17.2

* Pod Update

---------

Co-authored-by: GitHub <noreply@github.com>
Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>
  • Loading branch information
3 people authored Dec 18, 2023
1 parent fb911de commit 2db6953
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 15 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.4.0...8.17.1)
- Bump Kotlin version from v1.8.0 to v1.9.21 ([#146](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/146))

### Features

- Bump Cocoa SDK from v8.17.1 to v8.17.2 ([#163](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/163))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8172)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.17.1...8.17.2)

## 0.3.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ buildAppleSamples:
# cd ./sentry-samples/kmp-app-mvvm-di/iosApp && touch iosApp.xcconfig
sudo xcode-select --switch /Applications/Xcode.app && /usr/bin/xcodebuild -version
./gradlew ":sentry-samples:kmp-app-cocoapods:shared:podInstall"
cd ./sentry-samples/kmp-app-cocoapods/iosApp; pod install
cd ./sentry-samples/kmp-app-cocoapods/iosApp; pod update;
xcodebuild -workspace ./sentry-samples/kmp-app-cocoapods/iosApp/iosApp.xcworkspace -scheme iosApp -configuration Debug -sdk iphonesimulator -arch arm64
# xcodebuild -project ./sentry-samples/kmp-app-mvvm-di/iosApp.xcodeproj -scheme iosApp -configuration Debug -sdk iphonesimulator -arch arm64

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/java/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ object Config {
val sentryAndroid = "io.sentry:sentry-android:$sentryJavaVersion"
val sentryJava = "io.sentry:sentry:$sentryJavaVersion"

val sentryCocoaVersion = "8.17.1"
val sentryCocoaVersion = "8.17.2"
val sentryCocoa = "Sentry"

object Samples {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Pod::Spec.new do |spec|
spec.osx.deployment_target = '10.13'
spec.tvos.deployment_target = '11.0'
spec.watchos.deployment_target = '4.0'
spec.dependency 'Sentry', '8.17.1'
spec.dependency 'Sentry', '8.17.2'

if !Dir.exist?('build/cocoapods/framework/sentry_kotlin_multiplatform.framework') || Dir.empty?('build/cocoapods/framework/sentry_kotlin_multiplatform.framework')
raise "
Expand Down Expand Up @@ -50,4 +50,4 @@ Pod::Spec.new do |spec|
}
]

end
end
20 changes: 10 additions & 10 deletions sentry-samples/kmp-app-cocoapods/iosApp/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
PODS:
- Sentry (8.17.1):
- Sentry/Core (= 8.17.1)
- SentryPrivate (= 8.17.1)
- Sentry/Core (8.17.1):
- SentryPrivate (= 8.17.1)
- SentryPrivate (8.17.1)
- Sentry (8.17.2):
- Sentry/Core (= 8.17.2)
- SentryPrivate (= 8.17.2)
- Sentry/Core (8.17.2):
- SentryPrivate (= 8.17.2)
- SentryPrivate (8.17.2)
- shared (1.0):
- Sentry (= 8.17.1)
- Sentry (= 8.17.2)

DEPENDENCIES:
- shared (from `../shared`)
Expand All @@ -21,9 +21,9 @@ EXTERNAL SOURCES:
:path: "../shared"

SPEC CHECKSUMS:
Sentry: d9f99f9cc13777c5d938650c1e1c85047bb4f0d1
SentryPrivate: 839b1e58addf58624087a80b2628e543193fa8ef
shared: 0feb26c3a0ba09396b373b6b7595521635bc0e72
Sentry: 64a9f9c3637af913adcf53deced05bbe452d1410
SentryPrivate: 024c6fed507ac39ae98e6d087034160f942920d5
shared: f681f4f7985339115141ec3c60e7b9ae150e0a16

PODFILE CHECKSUM: f282da88f39e69507b0a255187c8a6b644477756

Expand Down
2 changes: 1 addition & 1 deletion sentry-samples/kmp-app-cocoapods/shared/shared.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |spec|
spec.vendored_frameworks = 'build/cocoapods/framework/shared.framework'
spec.libraries = 'c++'
spec.ios.deployment_target = '14.1'
spec.dependency 'Sentry', '8.17.1'
spec.dependency 'Sentry', '8.17.2'

if !Dir.exist?('build/cocoapods/framework/shared.framework') || Dir.empty?('build/cocoapods/framework/shared.framework')
raise "
Expand Down

0 comments on commit 2db6953

Please sign in to comment.