Skip to content

Commit

Permalink
Upgrade to Scala 2.13.10
Browse files Browse the repository at this point in the history
Also changing sbt compiler option -target to -release as the former got deprecated with scala/scala#9982
  • Loading branch information
ioannakok committed Nov 25, 2022
1 parent 044ba4e commit 8405bfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project/ProjectSettings.scala
Expand Up @@ -22,7 +22,7 @@ object ProjectSettings {
scalacOptions ++= Seq(
"-unchecked",
"-deprecation",
"-target:jvm-1.8",
"-release:11",
"-Xcheckinit",
"-encoding",
"utf8",
Expand All @@ -32,7 +32,7 @@ object ProjectSettings {
Compile / packageDoc / publishArtifact := false,
Compile / doc / sources := Seq.empty,
Compile / doc := target.map(_ / "none").value,
scalaVersion := "2.13.8",
scalaVersion := "2.13.10",
initialize := {
val _ = initialize.value
assert(
Expand Down

0 comments on commit 8405bfc

Please sign in to comment.