Skip to content

Commit

Permalink
update to Kotlin 1.8.20
Browse files Browse the repository at this point in the history
  • Loading branch information
Foso committed Apr 13, 2023
1 parent b13af85 commit 4ef9f3d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![jCenter](https://img.shields.io/badge/Apache-2.0-green.svg
)](https://github.com/Foso/KotlinReactNativeMpp/blob/master/LICENSE)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
[![jCenter](https://img.shields.io/badge/Kotlin-1.8.10-green.svg
[![jCenter](https://img.shields.io/badge/Kotlin-1.8.20-green.svg
)](https://github.com/Foso/Sheasy/blob/master/LICENSE)


Expand All @@ -26,7 +26,7 @@ This is an example project that shows how to create a Kotlin Compiler Plugin. At
## Usage

> :information_source: Please be aware that the Kotlin Compiler still doesn’t have any stable API and there is no
> backwards compatibility guaranteed. Kotlin versions above 1.8.10 can have a totally different API.
> backwards compatibility guaranteed. Kotlin versions above 1.8.20 can have a totally different API.
* Inside the project folder run `./gradlew clean build`

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
}
}
plugins {
id("org.jetbrains.kotlin.multiplatform") version "1.8.10" apply false
id("org.jetbrains.kotlin.multiplatform") version "1.8.20" apply false
}
apply(plugin = "compiler.gradleplugin.helloworld")

Expand Down
6 changes: 3 additions & 3 deletions compiler-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version("1.8.10")
kotlin("kapt") version("1.8.10")
kotlin("jvm") version("1.8.20")
kotlin("kapt") version("1.8.20")
id("com.vanniktech.maven.publish") version("0.23.1")
`maven-publish`
signing
Expand All @@ -30,7 +30,7 @@ val autoService = "1.0.1"
dependencies {
compileOnly("com.google.auto.service:auto-service:$autoService")
kapt("com.google.auto.service:auto-service:$autoService")
compileOnly("org.jetbrains.kotlin:kotlin-compiler-embeddable:1.8.10")
compileOnly("org.jetbrains.kotlin:kotlin-compiler-embeddable:1.8.20")
testImplementation("dev.zacsweers.kctfork:core:0.2.1")
testImplementation("junit:junit:4.13.2")
testImplementation("com.google.truth:truth:1.1.3")
Expand Down
6 changes: 3 additions & 3 deletions gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
kotlin("jvm") version("1.8.10")
kotlin("kapt") version("1.8.10")
kotlin("jvm") version("1.8.20")
kotlin("kapt") version("1.8.20")
id("java-gradle-plugin")
`maven-publish`
}
Expand All @@ -19,7 +19,7 @@ allprojects {
}
}
dependencies {
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.8.10")
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.8.20")
}

gradlePlugin {
Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("org.jetbrains.kotlin.multiplatform") version "1.8.10"
id("org.jetbrains.kotlin.multiplatform") version "1.8.20"
}
apply(plugin = "compiler.gradleplugin.helloworld")

Expand Down

0 comments on commit 4ef9f3d

Please sign in to comment.