Skip to content

Commit 889fa06

Browse files
SethTisueWojciechMazur
authored andcommitted
use Scala 2.13.13 stdlib (was .12)
1 parent 4b27952 commit 889fa06

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed
Submodule stdLib213 updated 1814 files

project/Build.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ object Build {
124124
* scala-library.
125125
*/
126126
def stdlibVersion(implicit mode: Mode): String = mode match {
127-
case NonBootstrapped => "2.13.12"
128-
case Bootstrapped => "2.13.12"
127+
case NonBootstrapped => "2.13.13"
128+
case Bootstrapped => "2.13.13"
129129
}
130130

131131
val dottyOrganization = "org.scala-lang"
@@ -1141,7 +1141,7 @@ object Build {
11411141
.exclude("org.eclipse.lsp4j","org.eclipse.lsp4j.jsonrpc"),
11421142
"org.eclipse.lsp4j" % "org.eclipse.lsp4j" % "0.20.1",
11431143
),
1144-
libraryDependencies += ("org.scalameta" % "mtags-shared_2.13.12" % mtagsVersion % SourceDeps),
1144+
libraryDependencies += ("org.scalameta" % "mtags-shared_2.13.13" % mtagsVersion % SourceDeps),
11451145
ivyConfigurations += SourceDeps.hide,
11461146
transitiveClassifiers := Seq("sources"),
11471147
Compile / scalacOptions ++= Seq("-Yexplicit-nulls", "-Ysafe-init"),

project/MiMaFilters.scala

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@ object MiMaFilters {
1414
ProblemFilters.exclude[MissingFieldProblem]("scala.runtime.stdLibPatches.language#experimental.relaxedExtensionImports"),
1515
ProblemFilters.exclude[MissingClassProblem]("scala.runtime.stdLibPatches.language$experimental$relaxedExtensionImports$"),
1616
// end of New experimental features in 3.3.X
17-
18-
// New in 2.13.12 -- can be removed once scala/scala#10549 lands in 2.13.13
19-
// and we take the upgrade here
20-
ProblemFilters.exclude[DirectMissingMethodProblem]("scala.collection.immutable.MapNodeRemoveAllSetNodeIterator.next"),
2117
)
2218
val TastyCore: Seq[ProblemFilter] = Seq(
2319
)

0 commit comments

Comments
 (0)