Skip to content

Commit 5ffd8de

Browse files
committed
Upgrade Scala 2 to 2.13.14
[Cherry-picked e81b4a3][modified]
1 parent 5394674 commit 5ffd8de

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

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.13"
128-
case Bootstrapped => "2.13.13"
127+
case NonBootstrapped => "2.13.14"
128+
case Bootstrapped => "2.13.14"
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.13" % mtagsVersion % SourceDeps),
1144+
libraryDependencies += ("org.scalameta" % "mtags-shared_2.13.14" % mtagsVersion % SourceDeps),
11451145
ivyConfigurations += SourceDeps.hide,
11461146
transitiveClassifiers := Seq("sources"),
11471147
Compile / scalacOptions ++= Seq("-Yexplicit-nulls", "-Ysafe-init"),

project/MiMaFilters.scala

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ 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.13
19+
"scala.collection.mutable.ArrayBuffer.resizeUp", // private[mutable] def
20+
// New in 2.13.14
21+
"scala.util.Properties.consoleIsTerminal", // private[scala] lazy val
22+
// end of new in Scala 2
1723
)
1824
val TastyCore: Seq[ProblemFilter] = Seq(
1925
)

0 commit comments

Comments
 (0)