File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,10 @@ object Deps {
9
9
val scala213 = 1 .to(16 ).map(" 2.13." + _)
10
10
val scala33 = 0 .to(3 ).map(" 3.3." + _)
11
11
val scala34 = 0 .to(3 ).map(" 3.4." + _)
12
- val scala35 = 0 .to(1 ).map(" 3.5." + _)
12
+ val scala35 = 0 .to(2 ).map(" 3.5." + _)
13
+ val scala36 = 0 .to(3 ).map(" 3.6." + _)
13
14
14
- val unreleased = scala33 ++ scala34 ++ scala35
15
+ val unreleased = scala33 ++ scala34 ++ scala35 ++ scala36
15
16
16
17
def scalaCompiler (scalaVersion : String ) =
17
18
if (scalaVersion.startsWith(" 3." )) ivy " org.scala-lang::scala3-compiler: $scalaVersion"
@@ -26,7 +27,8 @@ val crosses =
26
27
Deps .scala213 ++
27
28
Deps .scala33 ++
28
29
Deps .scala34 ++
29
- Deps .scala35
30
+ Deps .scala35 ++
31
+ Deps .scala36
30
32
31
33
object acyclic extends Cross [AcyclicModule ](crosses)
32
34
trait AcyclicModule extends CrossScalaModule with PublishModule {
You can’t perform that action at this time.
0 commit comments