Skip to content
Open
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### Changed

- Kotlin 2.2.10
- Kotlin 2.4.0
- Migrate to Sonatype Central Portal.

## 0.14.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,6 @@ private fun KotlinMultiplatformExtension.configureTargets(project: Project) {
project.tasks.withType(KotlinJvmCompile::class.java).configureEach {
it.compilerOptions {
jvmTarget.set(JvmTarget.JVM_11)
freeCompilerArgs.addAll(
"-Xjvm-default=all"
)
}
}
project.tasks.withType(KotlinJsCompile::class.java).configureEach {
Expand Down
2 changes: 0 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,4 @@ org.gradle.caching=true

kotlin.code.style=official

kotlin.native.binary.gc=cms

kotlin.incremental.native=true
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[versions]
kotlin = "2.3.20"
kotlin = "2.4.0"
dokka = "2.1.0"
binaryCompabilityValidator = "0.18.0"
toolchainsResolver = "1.0.0"
detekt = "2.0.0-alpha.2"
detekt = "2.0.0-alpha.3"
mavenPublish = "0.34.0"
coroutines = "1.10.1"
atomicfu = "0.27.0"
Expand Down
Loading