File tree 3 files changed +3
-2
lines changed
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ trait BCodeIdiomatic {
54
54
case " 17" => asm.Opcodes .V17
55
55
case " 18" => asm.Opcodes .V18
56
56
case " 19" => asm.Opcodes .V19
57
+ case " 20" => asm.Opcodes .V20
57
58
}
58
59
59
60
lazy val majorVersion : Int = (classfileVersion & 0xFF )
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class ScalaSettings extends SettingGroup with AllScalaSettings
17
17
object ScalaSettings :
18
18
// Keep synchronized with `classfileVersion` in `BCodeIdiomatic`
19
19
private val minTargetVersion = 8
20
- private val maxTargetVersion = 19
20
+ private val maxTargetVersion = 20
21
21
22
22
def supportedTargetVersions : List [String ] =
23
23
(minTargetVersion to maxTargetVersion).toList.map(_.toString)
Original file line number Diff line number Diff line change @@ -545,7 +545,7 @@ object Build {
545
545
546
546
// get libraries onboard
547
547
libraryDependencies ++= Seq (
548
- " org.scala-lang.modules" % " scala-asm" % " 9.3 .0-scala-1" , // used by the backend
548
+ " org.scala-lang.modules" % " scala-asm" % " 9.4 .0-scala-1" , // used by the backend
549
549
Dependencies .oldCompilerInterface, // we stick to the old version to avoid deprecation warnings
550
550
" org.jline" % " jline-reader" % " 3.19.0" , // used by the REPL
551
551
" org.jline" % " jline-terminal" % " 3.19.0" ,
You can’t perform that action at this time.
0 commit comments