Skip to content

Commit

Permalink
kmp: update versions for 0.6.0 release (#9933)
Browse files Browse the repository at this point in the history
* Update kotlin-multiplatform.mdx

* Update

* Update platform-includes/getting-started-primer/kotlin-multiplatform.mdx

Co-authored-by: Karl Heinz Struggl <kahest@users.noreply.github.com>

* Update

---------

Co-authored-by: Karl Heinz Struggl <kahest@users.noreply.github.com>
  • Loading branch information
buenaflor and kahest committed May 8, 2024
1 parent 3af15a6 commit 035a7d6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
5 changes: 4 additions & 1 deletion docs/platforms/kotlin-multiplatform/native-access-sdk.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ cocoapods {
ios.deploymentTarget = "14.1"
podfile = project.file("../iosApp/Podfile")
// Make sure you use the proper version according to our Cocoa SDK Version Compatibility Table.
pod("Sentry", "~> 8.20.0")
pod("Sentry") {
version = "~> 8.25"
extraOpts += listOf("-compiler-option", "-fmodules")
}
framework {
baseName = "shared"
export("io.sentry:sentry-kotlin-multiplatform:{{@inject packages.version('sentry.kotlin.kmp', '0.0.1-alpha.2') }}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ kotlin {
ios.deploymentTarget = "14.1"
podfile = project.file("../iosApp/Podfile")
// Make sure you use the proper version according to our Cocoa SDK Version Compatibility Table.
pod("Sentry", "~> 8.20.0")
pod("Sentry") {
version = "~> 8.25"
extraOpts += listOf("-compiler-option", "-fmodules")
}
framework {
baseName = "shared"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ Use the Kotlin Multiplatform and Cocoa SDK combinations listed in the table belo
| Up to 0.3.0 | 8.4.0 |
| 0.4.0 | 8.17.2 |
| 0.5.0 | 8.21.0 |
| 0.6.0 | 8.25.0 |

<Note>
Starting May 1, 2024, Apple requires all apps submitted to the App Store to provide a list of privacy-related APIs they use. Use Sentry Cocoa SDK version `8.21.0` to ensure compliance with these requirements.
Starting May 1, 2024, Apple requires all apps submitted to the App Store to provide a list of privacy-related APIs they use. Use Sentry Cocoa SDK version `8.25.0` to ensure compliance with these requirements.
Follow our [Apple Privacy Manifest](/platforms/kotlin-multiplatform/data-management/apple-privacy-manifest) guide to learn more.
</Note>

0 comments on commit 035a7d6

Please sign in to comment.