Skip to content

Commit

Permalink
Add support for scala 3.6 (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
svs-actian committed Feb 4, 2025
1 parent f5df00d commit 1c57c32
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ object Deps {
val scala213 = 1.to(16).map("2.13." + _)
val scala33 = 0.to(3).map("3.3." + _)
val scala34 = 0.to(3).map("3.4." + _)
val scala35 = 0.to(1).map("3.5." + _)
val scala35 = 0.to(2).map("3.5." + _)
val scala36 = 0.to(3).map("3.6." + _)

val unreleased = scala33 ++ scala34 ++ scala35
val unreleased = scala33 ++ scala34 ++ scala35 ++ scala36

def scalaCompiler(scalaVersion: String) =
if (scalaVersion.startsWith("3.")) ivy"org.scala-lang::scala3-compiler:$scalaVersion"
Expand All @@ -26,7 +27,8 @@ val crosses =
Deps.scala213 ++
Deps.scala33 ++
Deps.scala34 ++
Deps.scala35
Deps.scala35 ++
Deps.scala36

object acyclic extends Cross[AcyclicModule](crosses)
trait AcyclicModule extends CrossScalaModule with PublishModule {
Expand Down

0 comments on commit 1c57c32

Please sign in to comment.