Skip to content

Scala 2.13.11 (was .10) #17759

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
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