@@ -5,12 +5,12 @@ import de.tobiasroeser.mill.vcs.version.VcsVersion
5
5
6
6
val dottyVersions = sys.props.get(" dottyVersion" ).toList
7
7
8
- val scalaVersions = " 2.12.13" :: " 2.13.4" :: " 2.11.12" :: " 3.0.0-RC3 " :: dottyVersions
8
+ val scalaVersions = " 2.12.13" :: " 2.13.4" :: " 2.11.12" :: " 3.0.0" :: dottyVersions
9
9
val scala2Versions = scalaVersions.filter(_.startsWith(" 2." ))
10
10
11
11
val scalaJSVersions = for {
12
12
scalaV <- scalaVersions
13
- scalaJSV <- Seq (" 0.6.33" , " 1.4.0 " )
13
+ scalaJSV <- Seq (" 0.6.33" , " 1.5.1 " )
14
14
if scalaV.startsWith(" 2." ) || scalaJSV.startsWith(" 1." )
15
15
} yield (scalaV, scalaJSV)
16
16
@@ -41,8 +41,8 @@ trait PPrintModule extends PublishModule {
41
41
trait PPrintMainModule extends CrossScalaModule {
42
42
def millSourcePath = super .millSourcePath / offset
43
43
def ivyDeps = Agg (
44
- ivy " com.lihaoyi::fansi::0.2.13 " ,
45
- ivy " com.lihaoyi::sourcecode::0.2.6 "
44
+ ivy " com.lihaoyi::fansi::0.2.14 " ,
45
+ ivy " com.lihaoyi::sourcecode::0.2.7 "
46
46
)
47
47
def compileIvyDeps =
48
48
if (crossScalaVersion.startsWith(" 2" )) Agg (
@@ -99,7 +99,7 @@ trait PPrintMainModule extends CrossScalaModule {
99
99
trait PPrintTestModule extends ScalaModule with TestModule {
100
100
def crossScalaVersion : String
101
101
def testFrameworks = Seq (" utest.runner.Framework" )
102
- def ivyDeps = Agg (ivy " com.lihaoyi::utest::0.7.9 " )
102
+ def ivyDeps = Agg (ivy " com.lihaoyi::utest::0.7.10 " )
103
103
def offset : os.RelPath = os.rel
104
104
def millSourcePath = super .millSourcePath / os.up
105
105
0 commit comments