Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
[submodule "community-build/community-projects/stdLib213"]
path = community-build/community-projects/stdLib213
url = https://github.com/dotty-staging/scala213
branch = 2.13.x
[submodule "community-build/community-projects/sourcecode"]
path = community-build/community-projects/sourcecode
url = https://github.com/dotty-staging/sourcecode
Expand Down
4 changes: 2 additions & 2 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,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.11"
case Bootstrapped => "2.13.11"
}

val dottyOrganization = "org.scala-lang"
Expand Down
4 changes: 2 additions & 2 deletions project/MiMaFilters.scala
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ object MiMaFilters {
)

val StdlibBootstrappedBackwards: Map[String, Seq[ProblemFilter]] = Map(
"2.13.10" -> {
"2.13.11" -> {
Seq(
// Files that are not compiled in the bootstrapped library
ProblemFilters.exclude[MissingClassProblem]("scala.AnyVal"),
Expand Down Expand Up @@ -137,7 +137,7 @@ object MiMaFilters {
)

val StdlibBootstrappedForward: Map[String, Seq[ProblemFilter]] = Map(
"2.13.10" -> {
"2.13.11" -> {
Seq(
// Scala language features
ProblemFilters.exclude[FinalClassProblem]("scala.languageFeature$*$"),
Expand Down