Skip to content

Commit 02d3dc8

Browse files
author
getsentry-bot
committed
Merge branch 'release/0.17.0'
2 parents 4984d35 + a9092a8 commit 02d3dc8

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.17.0
44

55
### Features
66

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,16 @@ Every version of our Kotlin Multiplatform SDK is compiled with a specific versio
4040
Use the Kotlin Multiplatform and Cocoa SDK combinations listed in the table below to ensure the best compatibility and stability.
4141

4242
| Kotlin Multiplatform SDK Version | Cocoa SDK Version |
43-
| -------------------------------- | ----------------- |
43+
|----------------------------------| ----------------- |
4444
| 0.6.0 | 8.25.0 |
4545
| 0.7.0, 0.7.1 | 8.26.0 |
4646
| 0.8.0, 0.9.0 | 8.36.0 |
4747
| 0.10.0 | 8.38.0 |
4848
| 0.11.0 | 8.44.0 |
4949
| 0.12.0 | 8.49.0 (Xcode 16.3 compatible) |
5050
| 0.13.0 | 8.49.1 |
51-
| 0.14.0 | 8.53.1 |
52-
| 0.15.0, 0.16.0 | 8.53.2 |
51+
| 0.14.0 | 8.53.1 |
52+
| 0.15.0, 0.16.0, 0.17.0 | 8.53.2 |
5353

5454
## Usage
5555

build.gradle.kts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ tasks.register("validateDistributions") {
7979

8080
private fun Project.validateKotlinMultiplatformCoreArtifacts() {
8181
val distributionDir = project.layout.buildDirectory.dir("distributions").get().asFile
82-
val expectedNumOfFiles = 15
82+
val expectedNumOfFiles = 20
8383
val filesList = distributionDir.listFiles()
8484
val actualNumOfFiles = filesList?.size ?: 0
8585

@@ -96,7 +96,11 @@ private fun Project.validateKotlinMultiplatformCoreArtifacts() {
9696
"macosx64", "macosarm64",
9797
"jvm",
9898
"iosx64", "iossimulatorarm64", "iosarm64",
99-
"android"
99+
"android",
100+
"js",
101+
"wasm-js",
102+
"linuxx64", "linuxarm64",
103+
"mingwx64"
100104
)
101105

102106
val artifactPaths = buildList {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ android.useAndroidX=true
88
compose.version=1.3.1-rc01
99

1010
# Release information
11-
versionName=0.16.0
11+
versionName=0.17.0
1212

1313
# Increase memory for in-process compiler execution.
1414
org.gradle.jvmargs=-Xmx6g

sentry-kotlin-multiplatform-gradle-plugin/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
id=io.sentry.kotlin.multiplatform.gradle
22
implementationClass=io.sentry.kotlin.multiplatform.gradle.SentryPlugin
3-
versionName=0.16.0
3+
versionName=0.17.0
44
group=io.sentry
55
sentryCocoaVersion=8.53.2
66

0 commit comments

Comments
 (0)