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

Upgrade Kotlin to stable 1.7.20 in GitHub workflow #940

Merged
merged 2 commits into from Oct 8, 2022
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 .github/workflows/gradle.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
java-version: [ 11, 17, 18 ] # test LTS versions, and the newest
kotlin-version: [ 1.5.31, 1.6.21, 1.7.20-RC ]
kotlin-version: [ 1.5.31, 1.6.21, 1.7.20 ]
kotlin-ir-enabled: [ true, false ]
fail-fast: false # in case one JDK fails, we still want to see results from others
timeout-minutes: 30
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Expand Up @@ -10,7 +10,7 @@ plugins {
}

// set the versions of Gradle plugins that the subprojects will use here
val kotlinPluginVersion: String = "1.7.10"
val kotlinPluginVersion: String = "1.7.20"

val androidGradle = "7.2.1"
val kotlinxKover = "0.5.1"
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/buildsrc/config/Deps.kt
Expand Up @@ -11,7 +11,7 @@ object Deps {

const val androidTools = "7.2.1"
const val dokka = "1.7.10"
const val kotlinDefault = "1.7.10"
const val kotlinDefault = "1.7.20"
const val coroutines = "1.6.4"
const val slfj = "1.7.36"
const val logback = "1.2.10"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -8,7 +8,7 @@ org.gradle.welcome=never
org.gradle.jvmargs=-XX:MaxMetaspaceSize=768m
kotlin.mpp.stability.nowarn=true
localrepo=build/maven-local-repo
kotlin.version=1.7.10
kotlin.version=1.7.20
android.useAndroidX=true
# version of Java that will be used to build the project
javaToolchainMainVersion=11
Expand Down