Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Kotlin to 1.4.10 #137

Merged
merged 1 commit into from
Sep 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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