Skip to content

Commit

Permalink
Don't use 3.4.0-RC1 as default, allow to compiler plugin/scalalib tests
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed Jan 11, 2024
1 parent 5283683 commit 4525eab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project/ScalaVersions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ object ScalaVersions {
val crossScala212 = (14 to 18).map(v => s"2.12.$v")
val crossScala213 = (8 to 12).map(v => s"2.13.$v")
val crossScala3 = List(
Seq("3.4.0-RC1"), // Bug in compiler leads to errors in tests, don't use it as default until RC2
// windowslib fails to compile with 3.1.{0-1}
(2 to 3).map(v => s"3.1.$v"),
(0 to 2).map(v => s"3.2.$v"),
(0 to 1).map(v => s"3.3.$v"),
Seq("3.4.0-RC1")
(0 to 1).map(v => s"3.3.$v")
).flatten

// Scala versions used for publishing libraries
Expand Down

0 comments on commit 4525eab

Please sign in to comment.