Skip to content

Commit

Permalink
Merge pull request #2115 from scalacenter/update/scala3-compiler-3.5.2
Browse files Browse the repository at this point in the history
Update scala3-compiler, scala3-library, ... to 3.5.2
  • Loading branch information
bjaglin authored Dec 21, 2024
2 parents ec767bb + 67a3faa commit 6365c36
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import sbt._
object Dependencies {
val scala212 = sys.props.getOrElse("scala212.nightly", "2.12.20")
val scala213 = sys.props.getOrElse("scala213.nightly", "2.13.15")
val scala3Next = sys.props.getOrElse("scala3.nightly", "3.5.1")
val scala3Next = sys.props.getOrElse("scala3.nightly", "3.5.2")
val scala3LTS = "3.3.4"

val bijectionCoreV = "0.9.8"
Expand Down
6 changes: 5 additions & 1 deletion project/ScalafixBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
)

private val PreviousScalaVersion: Map[String, String] = Map(
"3.5.2" -> "3.5.1"
)

override def buildSettings: Seq[Setting[_]] = List(
Expand All @@ -246,6 +247,8 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
Some("^\\d+\\.\\d+\\.\\d+\\+\\d+".r),
versionScheme := Some("early-semver"),
libraryDependencySchemes ++= Seq(
// Scala 3 compiler
"org.scala-lang.modules" % "scala-asm" % VersionScheme.Always,
// coursier-versions always return false for the *.*.*.*-r pattern jgit uses
Dependencies.jgit.withRevision(VersionScheme.Always),
// metaconfig has no breaking change from 0.13.0 to 0.14.0
Expand All @@ -272,7 +275,8 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
Seq(
"org.scalameta" % s"semanticdb-scalac-core_$previous",
"ch.epfl.scala" % s"scalafix-cli_$previous",
"ch.epfl.scala" % s"scalafix-reflect_$previous"
"ch.epfl.scala" % s"scalafix-reflect_$previous",
"ch.epfl.scala" % s"scalafix-rules_$previous"
)
case None => Seq()
}
Expand Down

0 comments on commit 6365c36

Please sign in to comment.