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-compiler to 2.1.0 #4240

Open
wants to merge 1 commit into
base: main
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.mill
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ object Settings {
)
val mimaBaseVersions: Seq[String] =
0.to(13).map("0.11." + _) ++
Seq("0.12.0", "0.12.1", "0.12.2", "0.12.3", "0.12.4", "0.12.5")
Seq("0.12.0", "0.12.1", "0.12.2", "0.12.3", "0.12.4", "0.12.5")

val graalvmJvmId = "graalvm-community:23.0.1"
}
Expand Down Expand Up @@ -187,7 +187,7 @@ object Deps {
val requests = ivy"com.lihaoyi::requests:0.9.0"
val logback = ivy"ch.qos.logback:logback-classic:1.5.16"
val sonatypeCentralClient = ivy"com.lumidion::sonatype-central-client-requests:0.3.0"
val kotlinVersion = "2.0.21"
val kotlinVersion = "2.1.0"
val kotlinCompiler = ivy"org.jetbrains.kotlin:kotlin-compiler:$kotlinVersion"
val mavenVersion = "3.9.9"
val mavenEmbedder = ivy"org.apache.maven:maven-embedder:$mavenVersion"
Expand Down
2 changes: 1 addition & 1 deletion example/android/kotlinlib/2-compose/build.mill
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ object androidSdkModule0 extends AndroidSdkModule {
// Actual android application
object app extends AndroidAppKotlinModule {

def kotlinVersion = "2.0.21"
def kotlinVersion = "2.1.0"
def androidSdkModule = mill.define.ModuleRef(androidSdkModule0)
def androidCompileSdk = 35
def androidMinSdk = 26
Expand Down
Loading