Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

### Dependencies

- Bump Cocoa SDK from v8.17.2 to v8.19.0 ([#180](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/180))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8190)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.17.2...8.19.0)
- Bump Java SDK from v7.1.0 to v7.2.0 ([#177](https://github.com/getsentry/sentry-kotlin-multiplatform/pull/177))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#720)
- [diff](https://github.com/getsentry/sentry-java/compare/7.1.0...7.2.0)
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.2"
val sentryCocoaVersion = "8.19.0"
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.2'
spec.dependency 'Sentry', '8.19.0'

if !Dir.exist?('build/cocoapods/framework/sentry_kotlin_multiplatform.framework') || Dir.empty?('build/cocoapods/framework/sentry_kotlin_multiplatform.framework')
raise "
Expand Down
16 changes: 8 additions & 8 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.2):
- Sentry/Core (= 8.17.2)
- SentryPrivate (= 8.17.2)
- Sentry/Core (8.17.2):
- SentryPrivate (= 8.17.2)
- SentryPrivate (8.17.2)
- Sentry (8.19.0):
- Sentry/Core (= 8.19.0)
- SentryPrivate (= 8.19.0)
- Sentry/Core (8.19.0):
- SentryPrivate (= 8.19.0)
- SentryPrivate (8.19.0)
- shared (1.0):
- Sentry (= 8.17.2)
- Sentry (= 8.19.0)

DEPENDENCIES:
- shared (from `../shared`)
Expand All @@ -27,4 +27,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: f282da88f39e69507b0a255187c8a6b644477756

COCOAPODS: 1.13.0
COCOAPODS: 1.14.3
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.2'
spec.dependency 'Sentry', '8.19.0'

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