Skip to content

Commit

Permalink
Added cross release for Scala 2.13.10 (#58)
Browse files Browse the repository at this point in the history
Pull request: #58
  • Loading branch information
lefou authored Oct 8, 2022
1 parent 247c16b commit 00747eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import de.tobiasroeser.mill.vcs.version.VcsVersion

object Deps {
def acyclicAgg(scalaVersion: String) =
Agg(ivy"com.lihaoyi:::acyclic:0.3.4")
.filter(_ => scalaVersion != "2.13.9" /* exclude unreleased versions, if any */)
Agg(ivy"com.lihaoyi:::acyclic:0.3.5")
.filter(_ => scalaVersion != "2.13.10" /* exclude unreleased versions, if any */)

def scalaCompiler(scalaVersion: String) = ivy"org.scala-lang:scala-compiler:${scalaVersion}"
val utest = ivy"com.lihaoyi::utest:0.8.0"
Expand All @@ -14,7 +14,7 @@ object Deps {
object acyclic extends Cross[AcyclicModule](
"2.11.12",
"2.12.8", "2.12.9", "2.12.10", "2.12.11", "2.12.12", "2.12.13", "2.12.14", "2.12.15", "2.12.16", "2.12.17",
"2.13.0", "2.13.1", "2.13.2", "2.13.3", "2.13.4", "2.13.5", "2.13.6", "2.13.7", "2.13.8", "2.13.9"
"2.13.0", "2.13.1", "2.13.2", "2.13.3", "2.13.4", "2.13.5", "2.13.6", "2.13.7", "2.13.8", "2.13.9", "2.13.10"
)
class AcyclicModule(val crossScalaVersion: String) extends CrossScalaModule with PublishModule {
override def crossFullScalaVersion = true
Expand Down

0 comments on commit 00747eb

Please sign in to comment.