Skip to content

Commit 1807a8b

Browse files
committed
update to Kotlin 1.5.10
1 parent 61d22cb commit 1807a8b

File tree

6 files changed

+10
-11
lines changed

6 files changed

+10
-11
lines changed

Readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![jCenter](https://img.shields.io/badge/Apache-2.0-green.svg
55
)](https://github.com/Foso/KotlinReactNativeMpp/blob/master/LICENSE)
66
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
7-
[![jCenter](https://img.shields.io/badge/Kotlin-1.4.31-green.svg
7+
[![jCenter](https://img.shields.io/badge/Kotlin-1.5.10-green.svg
88
)](https://github.com/Foso/Sheasy/blob/master/LICENSE)
99

1010

@@ -25,15 +25,15 @@ This is an example project that shows how to create a Kotlin Compiler Plugin. At
2525

2626
## Usage
2727

28-
> :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.4.20 can have all totally different API.
28+
> :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.5.10 can have a totally different API.
2929
3030
* Inside the project folder run ` ./gradlew clean build`
3131

3232
The plugin is only active when the build cache is changed. This is why you need to run "clean" before building, when you want to see the log output again.
3333

3434
### 👷 Project Structure
3535
#### src
36-
* <kbd>app</kbd> - A Kotlin Multiplatform project which applies a gradle plugin(compiler.plugin.helloworld) whichs triggers the compiler plugin.
36+
* <kbd>src</kbd> - A Kotlin Multiplatform project which applies a gradle plugin(compiler.plugin.helloworld) whichs triggers the compiler plugin.
3737

3838
#### buildSrc/compiler-plugin
3939
* <kbd>kotlin-compiler-native-plugin</kbd> - This module contains the Kotlin Compiler Plugin for native targets

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ buildscript {
1414
}
1515
}
1616
plugins {
17-
id 'org.jetbrains.kotlin.multiplatform' version '1.5.0'
17+
id 'org.jetbrains.kotlin.multiplatform' version '1.5.10'
1818
}
1919
apply plugin: 'compiler.gradleplugin.helloworld'
2020

buildSrc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.jetbrains.kotlin.jvm' version '1.5.0'
2+
id 'org.jetbrains.kotlin.jvm' version '1.5.10'
33
}
44
apply plugin: "maven"
55

buildSrc/compiler-plugin/gradle-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ gradlePlugin {
2525
}
2626

2727
dependencies {
28-
implementation "org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.5.0-M2"
28+
implementation "org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.5.10"
2929
}

buildSrc/compiler-plugin/kotlin-native-plugin/build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,9 @@ repositories {
2121
}
2222

2323
dependencies {
24-
implementation "org.jetbrains.kotlin:kotlin-stdlib"
2524
compileOnly "org.jetbrains.kotlin:kotlin-compiler"
26-
compileOnly "com.google.auto.service:auto-service:1.0-rc7"
27-
kapt "com.google.auto.service:auto-service:1.0-rc7"
25+
compileOnly "com.google.auto.service:auto-service:1.0"
26+
kapt "com.google.auto.service:auto-service:1.0"
2827
}
2928

3029
compileKotlin {

buildSrc/compiler-plugin/kotlin-plugin/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ repositories {
2323
dependencies {
2424
implementation "org.jetbrains.kotlin:kotlin-stdlib"
2525
compileOnly "org.jetbrains.kotlin:kotlin-compiler-embeddable"
26-
compileOnly "com.google.auto.service:auto-service:1.0-rc7"
27-
kapt "com.google.auto.service:auto-service:1.0-rc7"
26+
compileOnly "com.google.auto.service:auto-service:1.0"
27+
kapt "com.google.auto.service:auto-service:1.0"
2828
}
2929

3030
compileKotlin {

0 commit comments

Comments
 (0)