Skip to content

Commit

Permalink
Upgrade Scala and semanticdb-scalac
Browse files Browse the repository at this point in the history
  • Loading branch information
joan38 committed Aug 17, 2021
1 parent 2431bb8 commit 4bc1b98
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ object `mill-scalafix`
with StyleModule
with BuildInfo
with GitVersionedPublishModule {
override def scalaVersion = "2.13.5"
override def scalaVersion = "2.13.6"

lazy val millVersion = "0.9.8"
override def compileIvyDeps = super.compileIvyDeps() ++ Agg(
Expand Down Expand Up @@ -46,7 +46,7 @@ object `mill-scalafix`
developers = Seq(Developer("joan38", "Joan Goyeau", "https://github.com/joan38"))
)

val semanticdbScalac = ivy"org.scalameta:::semanticdb-scalac:4.4.19"
val semanticdbScalac = ivy"org.scalameta:::semanticdb-scalac:4.4.27"

override def generatedSources = T {
val dest = T.ctx.dest
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.2"
def scalaVersion = "2.13.6"
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.2"
def scalaVersion = "2.13.6"
def scalacOptions = Seq("-Ywarn-unused")
}
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.2"
def scalaVersion = "2.13.6"
def scalacOptions = Seq("-Ywarn-unused")
}

Expand Down
2 changes: 1 addition & 1 deletion itest/src/no-source/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.2"
def scalaVersion = "2.13.6"
def scalacOptions = Seq("-Ywarn-unused")
}

0 comments on commit 4bc1b98

Please sign in to comment.