Skip to content
This repository has been archived by the owner on Jun 22, 2024. It is now read-only.

Commit

Permalink
chore: Bump kotlin to 1.9.20
Browse files Browse the repository at this point in the history
  • Loading branch information
sya-ri committed Nov 9, 2023
1 parent e81bb76 commit df99681
Show file tree
Hide file tree
Showing 6 changed files with 291 additions and 352 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<span align="center">

[![Kotlin](https://img.shields.io/badge/kotlin-1.7.20-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Kotlin](https://img.shields.io/badge/kotlin-1.9.20-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![GitHub License](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](http://www.apache.org/licenses/LICENSE-2.0)
[![Maven Central](https://img.shields.io/maven-central/v/dev.s7a/gofile)](https://search.maven.org/artifact/dev.s7a/gofile)
[![KDoc link](https://img.shields.io/badge/API_reference-KDoc-blue)](https://gh.s7a.dev/Gofile.kt)
Expand Down
10 changes: 4 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.jetbrains.dokka.gradle.DokkaTask

plugins {
kotlin("multiplatform") version "1.7.20"
kotlin("multiplatform") version "1.9.20"
kotlin("plugin.serialization") version "1.7.20"
id("org.jetbrains.kotlinx.kover") version "0.7.4"
id("org.jetbrains.dokka") version "1.9.10"
Expand All @@ -20,18 +20,16 @@ kotlin {
jvm {
compilations.all {
kotlinOptions.jvmTarget = "1.8"
jvmToolchain(8)
}
withJava()
testRuns["test"].executionTask.configure {
useJUnitPlatform()
}
}
js(IR) {
browser {
commonWebpackConfig {
cssSupport.enabled = true
}
}
browser()
nodejs()
}
val hostOs = System.getProperty("os.name")
val isMingwX64 = hostOs.startsWith("Windows")
Expand Down
2 changes: 1 addition & 1 deletion examples/e2e/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
kotlin("jvm") version "1.7.20"
kotlin("jvm") version "1.9.20"
id("com.github.johnrengelman.shadow") version "7.1.2"
application
}
Expand Down
2 changes: 1 addition & 1 deletion examples/jvm/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
kotlin("jvm") version "1.7.20"
kotlin("jvm") version "1.9.20"
id("com.github.johnrengelman.shadow") version "7.1.2"
application
}
Expand Down
2 changes: 1 addition & 1 deletion examples/native/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
kotlin("multiplatform") version "1.7.20"
kotlin("multiplatform") version "1.9.20"
}

version = "1.0.1-SNAPSHOT"
Expand Down
Loading

0 comments on commit df99681

Please sign in to comment.