Skip to content

Commit

Permalink
Bump Kotlin to 1.4.10 (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikc5000 authored Sep 10, 2020
1 parent 3186c26 commit c43f4b3
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 17 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.4.0"
kotlin("jvm") version "1.4.10"
`kotlin-dsl`
}

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
object Versions {
const val kotlin = "1.4.0"
const val kotlin = "1.4.10"
const val serialization = "1.0.0-RC"
const val atomicfu = "0.14.4"
const val androidxTest = "1.2.0"
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Due to the experimental status of [inline classes](https://kotlinlang.org/docs/r
| --- | --- |
| 0.1.x | 1.3.6x |
| 0.2.x | 1.3.7x |
| 0.3.x | 1.4.0x |
| 0.3.x | 1.4.0/1.4.10 |

### JVM

Expand Down
10 changes: 0 additions & 10 deletions extensions/parcelize/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import org.jetbrains.dokka.gradle.DokkaTask

plugins {
`android-library`
id("kotlin-android-extensions")
Expand Down Expand Up @@ -34,11 +32,3 @@ dependencies {
androidTestImplementation(Libs.googleTruth)
androidTestUtil(Libs.AndroidxTest.orchestrator)
}

tasks.withType<DokkaTask>().configureEach {
dokkaSourceSets {
configureEach {
includes.from(file("MODULE.md"))
}
}
}
2 changes: 0 additions & 2 deletions extensions/serialization/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import org.jetbrains.dokka.gradle.DokkaTask

plugins {
`multiplatform-library`
kotlin("plugin.serialization") version Versions.kotlin
Expand Down
2 changes: 1 addition & 1 deletion tools/code-generator/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.4.0"
kotlin("jvm") version "1.4.10"
application
}

Expand Down
2 changes: 1 addition & 1 deletion tools/mkdocs-dokka-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.4.0"
kotlin("jvm") version "1.4.10"
}

repositories {
Expand Down

0 comments on commit c43f4b3

Please sign in to comment.