Skip to content

Commit

Permalink
add comment about scala 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
goshacodes committed Feb 2, 2024
1 parent 8365357 commit 81de4e2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ lazy val scalatest = Def.setting("org.scalatest" %%% "scalatest" % "3.2.17")
lazy val specs2 = Def.setting("org.specs2" %%% "specs2-core" % "4.20.2")

val commonSettings = Defaults.coreDefaultSettings ++ Seq(
/**
* Symbol.newClass is marked experimental, so we should use @experimental annotation in every test suite.
* 3.3.0 has a bug so we can omit this annotation
*/
scalaVersion := "3.3.0",
scalacOptions ++= Seq("-deprecation", "-unchecked", "-feature", "-release:8")
)
Expand Down

0 comments on commit 81de4e2

Please sign in to comment.