@@ -19,7 +19,7 @@ val scalaVersions = Seq(
1919) ++ communityBuildDottyVersion
2020
2121object Deps {
22- val acyclic = ivy " com.lihaoyi:::acyclic:0.3.12 "
22+ val acyclic = ivy " com.lihaoyi:::acyclic:0.3.13 "
2323 val jna = ivy " net.java.dev.jna:jna:5.14.0 "
2424 val geny = ivy " com.lihaoyi::geny::1.1.1 "
2525 val sourcecode = ivy " com.lihaoyi::sourcecode::0.4.2 "
@@ -53,7 +53,19 @@ trait SafeDeps extends ScalaModule {
5353
5454trait MiMaChecks extends Mima {
5555 def mimaPreviousVersions =
56- Seq (" 0.9.0" , " 0.9.1" , " 0.9.2" , " 0.9.3" , " 0.10.0" , " 0.10.1" , " 0.10.2" , " 0.10.3" , " 0.10.4" , " 0.10.5" , " 0.10.6" )
56+ Seq (
57+ " 0.9.0" ,
58+ " 0.9.1" ,
59+ " 0.9.2" ,
60+ " 0.9.3" ,
61+ " 0.10.0" ,
62+ " 0.10.1" ,
63+ " 0.10.2" ,
64+ " 0.10.3" ,
65+ " 0.10.4" ,
66+ " 0.10.5" ,
67+ " 0.10.6"
68+ )
5769 override def mimaBinaryIssueFilters : T [Seq [ProblemFilter ]] = Seq (
5870 ProblemFilter .exclude[ReversedMissingMethodProblem ](" os.PathConvertible.isCustomFs" ),
5971 // this is fine, because ProcessLike is sealed (and its subclasses should be final)
@@ -95,8 +107,8 @@ trait OsLibModule
95107
96108trait OsModule extends OsLibModule { outer =>
97109 def ivyDeps = Agg (Deps .geny)
98- override def compileIvyDeps = T {
99- val scalaReflectOpt = Option .when(! ZincWorkerUtil .isDottyOrScala3(scalaVersion())) (
110+ override def compileIvyDeps = T {
111+ val scalaReflectOpt = Option .when(! ZincWorkerUtil .isDottyOrScala3(scalaVersion()))(
100112 Deps .scalaReflect(scalaVersion())
101113 )
102114 super .compileIvyDeps() ++ scalaReflectOpt
@@ -120,8 +132,8 @@ trait OsModule extends OsLibModule { outer =>
120132
121133 def scalaDocOptions = super .scalaDocOptions() ++ conditionalScalaDocOptions()
122134
123- def generatedSources = T {
124- val conversions = for (i <- Range .inclusive(2 , 22 )) yield {
135+ def generatedSources = T {
136+ val conversions = for (i <- Range .inclusive(2 , 22 )) yield {
125137 val ts = Range .inclusive(1 , i).map(n => s " T $n" ).mkString(" , " )
126138 val fs = Range .inclusive(1 , i).map(n => s " f $n: T $n => R " ).mkString(" , " )
127139 val vs = Range .inclusive(1 , i).map(n => s " f $n(t._ $n) " ).mkString(" , " )
0 commit comments