Skip to content

Commit 2a43783

Browse files
author
getsentry-bot
committed
Merge branch 'release/0.16.0'
2 parents 9785d1a + a1ad145 commit 2a43783

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
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.16.0
44

55
Potentially breaking: this release bumps the used Kotlin version to `2.1.21`.
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Use the Kotlin Multiplatform and Cocoa SDK combinations listed in the table belo
4949
| 0.12.0 | 8.49.0 (Xcode 16.3 compatible) |
5050
| 0.13.0 | 8.49.1 |
5151
| 0.14.0 | 8.53.1 |
52-
| 0.15.0 | 8.53.2 |
52+
| 0.15.0, 0.16.0 | 8.53.2 |
5353

5454
## Usage
5555

buildSrc/src/main/java/Publication.kt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,23 @@ fun DistributionContainer.configureForMultiplatform(project: Project, buildPubli
3939
rename { "pom-default.xml" }
4040
}
4141

42+
// Rename the main jar to ...-all.jar due to craft
43+
if (distribution.name == "main") {
44+
from("$basePath$sep$projectName-$version.jar") {
45+
rename { "$projectName-$version-all.jar" }
46+
}
47+
}
48+
49+
// Rename the android.aar to android-release.aar due to craft
50+
if (distribution.name == "android") {
51+
from("$basePath$sep$projectName-$version.aar") {
52+
rename { "$projectName-release.aar" }
53+
}
54+
}
55+
4256
from(basePath) {
4357
exclude("*.pom")
58+
exclude("$projectName-$version.aar")
4459
}
4560
}
4661
}

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.15.0
11+
versionName=0.16.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.15.0
3+
versionName=0.16.0
44
group=io.sentry
55
sentryCocoaVersion=8.53.2
66

0 commit comments

Comments
 (0)