Skip to content

Commit

Permalink
Scala 2.13.12
Browse files Browse the repository at this point in the history
  • Loading branch information
SethTisue committed Jan 16, 2024
1 parent 60b77ed commit aca92f4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion community-build/community-projects/stdLib213
Submodule stdLib213 updated 489 files
4 changes: 2 additions & 2 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ object Build {
* scala-library.
*/
def stdlibVersion(implicit mode: Mode): String = mode match {
case NonBootstrapped => "2.13.10"
case Bootstrapped => "2.13.10"
case NonBootstrapped => "2.13.12"
case Bootstrapped => "2.13.12"
}

val dottyOrganization = "org.scala-lang"
Expand Down
4 changes: 4 additions & 0 deletions project/MiMaFilters.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ object MiMaFilters {
ProblemFilters.exclude[MissingFieldProblem]("scala.runtime.stdLibPatches.language#experimental.relaxedExtensionImports"),
ProblemFilters.exclude[MissingClassProblem]("scala.runtime.stdLibPatches.language$experimental$relaxedExtensionImports$"),
// end of New experimental features in 3.3.X

// New in 2.13.12 -- can be removed once scala/scala#10549 lands in 2.13.13
// and we take the upgrade here
"scala.collection.immutable.MapNodeRemoveAllSetNodeIterator.next",
)
val TastyCore: Seq[ProblemFilter] = Seq(
)
Expand Down

0 comments on commit aca92f4

Please sign in to comment.