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 @@ -53,6 +53,7 @@ trait BCodeIdiomatic {
53
53
case " 16" => asm.Opcodes .V16
54
54
case " 17" => asm.Opcodes .V17
55
55
case " 18" => asm.Opcodes .V18
56
+ case " 19" => asm.Opcodes .V19
56
57
}
57
58
58
59
lazy val majorVersion : Int = (classfileVersion & 0xFF )
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class ScalaSettings extends SettingGroup with AllScalaSettings
16
16
object ScalaSettings :
17
17
// Keep synchronized with `classfileVersion` in `BCodeIdiomatic`
18
18
private val minTargetVersion = 8
19
- private val maxTargetVersion = 18
19
+ private val maxTargetVersion = 19
20
20
21
21
def supportedTargetVersions : List [String ] =
22
22
(minTargetVersion to maxTargetVersion).toList.map(_.toString)
Original file line number Diff line number Diff line change @@ -519,7 +519,7 @@ object Build {
519
519
520
520
// get libraries onboard
521
521
libraryDependencies ++= Seq (
522
- " org.scala-lang.modules" % " scala-asm" % " 9.2 .0-scala-1" , // used by the backend
522
+ " org.scala-lang.modules" % " scala-asm" % " 9.3 .0-scala-1" , // used by the backend
523
523
Dependencies .oldCompilerInterface, // we stick to the old version to avoid deprecation warnings
524
524
" org.jline" % " jline-reader" % " 3.19.0" , // used by the REPL
525
525
" org.jline" % " jline-terminal" % " 3.19.0" ,
You can’t perform that action at this time.
0 commit comments