File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import sbt._
7
7
object Dependencies {
8
8
val scala212 = sys.props.getOrElse(" scala212.nightly" , " 2.12.20" )
9
9
val scala213 = sys.props.getOrElse(" scala213.nightly" , " 2.13.15" )
10
- val scala3Next = sys.props.getOrElse(" scala3.nightly" , " 3.5.1 " )
10
+ val scala3Next = sys.props.getOrElse(" scala3.nightly" , " 3.5.2 " )
11
11
val scala3LTS = " 3.3.4"
12
12
13
13
val bijectionCoreV = " 0.9.8"
Original file line number Diff line number Diff line change @@ -231,6 +231,7 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
231
231
)
232
232
233
233
private val PreviousScalaVersion : Map [String , String ] = Map (
234
+ " 3.5.2" -> " 3.5.1"
234
235
)
235
236
236
237
override def buildSettings : Seq [Setting [_]] = List (
@@ -246,6 +247,8 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
246
247
Some (" ^\\ d+\\ .\\ d+\\ .\\ d+\\ +\\ d+" .r),
247
248
versionScheme := Some (" early-semver" ),
248
249
libraryDependencySchemes ++= Seq (
250
+ // Scala 3 compiler
251
+ " org.scala-lang.modules" % " scala-asm" % VersionScheme .Always ,
249
252
// coursier-versions always return false for the *.*.*.*-r pattern jgit uses
250
253
Dependencies .jgit.withRevision(VersionScheme .Always ),
251
254
// metaconfig has no breaking change from 0.13.0 to 0.14.0
@@ -272,7 +275,8 @@ object ScalafixBuild extends AutoPlugin with GhpagesKeys {
272
275
Seq (
273
276
" org.scalameta" % s " semanticdb-scalac-core_ $previous" ,
274
277
" ch.epfl.scala" % s " scalafix-cli_ $previous" ,
275
- " ch.epfl.scala" % s " scalafix-reflect_ $previous"
278
+ " ch.epfl.scala" % s " scalafix-reflect_ $previous" ,
279
+ " ch.epfl.scala" % s " scalafix-rules_ $previous"
276
280
)
277
281
case None => Seq ()
278
282
}
You can’t perform that action at this time.
0 commit comments