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

Update kotlin monorepo to v2.1.0 #1013

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ buildscript {
}
}
plugins {
kotlin("multiplatform") version("2.0.21") apply false
kotlin("android") version("2.0.21") apply false
kotlin("multiplatform") version("2.1.0") apply false
kotlin("android") version("2.1.0") apply false
id("com.android.application") version("7.4.2") apply false
id("com.android.library") version("7.4.2") apply false
id ("com.diffplug.spotless") version("6.18.0")
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
`kotlin-dsl`
kotlin("jvm") version "2.0.21"
kotlin("jvm") version "2.1.0"
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
object Versions {
const val kotlin = "2.0.21"
const val kotlin = "2.1.0"
const val lifecycle = "2.6.1"
const val room = "2.6.1"
const val navigation = "2.5.3"
Expand Down
Loading