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 scala-compiler, scala-library to 2.13.15 #503

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ addCommandAlias("compileScalafixOutputinScala3", s"""set `scalafix-output`/scala
def isCI = System.getenv("CI") != null

lazy val V = new {
val scala213 = "2.13.14"
val scala213 = "2.13.15"
val scala213BinaryVersion = "2.13"
val scala212 = "2.12.20"
val scalatest = "3.2.19"
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/main/scala/migrate/Messages.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ private[migrate] object Messages {
def notScala213(scalaVersion: String, projectId: String): String =
s"""|The current Scala Version of $projectId is $scalaVersion
|Before migrating to Scala 3, please upgrade to the latest 2.13 version.
|${YELLOW}scalaVersion := "2.13.14"$RESET
|${YELLOW}scalaVersion := "2.13.15"$RESET
|""".stripMargin
}
Loading