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 from 2.13.10 to 2.13.12 #176

Merged
merged 1 commit into from
Jan 8, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ trait MillScalafixCross
with GitVersionedPublishModule
with Cross.Module[String] {
def millVersion = crossValue
override def crossScalaVersion = "2.13.10"
override def crossScalaVersion = "2.13.12"
override def artifactSuffix = s"_mill${millBinaryVersion(millVersion)}" + super.artifactSuffix()

override def compileIvyDeps = super.compileIvyDeps() ++ Agg(
Expand Down
2 changes: 1 addition & 1 deletion itest/src/check-failed/build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import com.goyeau.mill.scalafix.ScalafixModule
import mill.scalalib._

object project extends ScalaModule with ScalafixModule {
def scalaVersion = "2.13.10"
def scalaVersion = "2.13.12"
def scalacOptions = Seq("-Ywarn-unused")
}
2 changes: 1 addition & 1 deletion itest/src/check/build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import com.goyeau.mill.scalafix.ScalafixModule
import mill.scalalib._

object project extends ScalaModule with ScalafixModule {
def scalaVersion = "2.13.10"
def scalaVersion = "2.13.12"
def scalacOptions = Seq("-Ywarn-unused")
}
2 changes: 1 addition & 1 deletion itest/src/custom-rule/build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import mill.scalalib._
import os._

object project extends ScalaModule with ScalafixModule {
def scalaVersion = "2.13.10"
def scalaVersion = "2.13.12"
def semanticDbEnablePluginScalacOptions = super.semanticDbEnablePluginScalacOptions() ++ Seq("-P:semanticdb:synthetics:on")
def scalafixIvyDeps = Agg(ivy"org.scala-lang.modules::scala-collection-migrations:2.11.0")
}
Expand Down
2 changes: 1 addition & 1 deletion itest/src/fix/build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import mill.scalalib._
import os._

object project extends ScalaModule with ScalafixModule {
def scalaVersion = "2.13.10"
def scalaVersion = "2.13.12"
def scalafixScalaBinaryVersion = mill.scalalib.api.ZincWorkerUtil.scalaBinaryVersion(scalaVersion())
def scalacOptions = Seq("-Ywarn-unused")
}
Expand Down
Loading