Skip to content

Commit bd8552c

Browse files
committed
Upgrade Scala 2 to 2.13.14
1 parent 60dc629 commit bd8552c

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

project/Build.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ object Build {
126126
* scala-library.
127127
*/
128128
def stdlibVersion(implicit mode: Mode): String = mode match {
129-
case NonBootstrapped => "2.13.13"
130-
case Bootstrapped => "2.13.13"
129+
case NonBootstrapped => "2.13.14"
130+
case Bootstrapped => "2.13.14"
131131
}
132132

133133
/** Version of the scala-library for which we will generate TASTy.
@@ -137,7 +137,7 @@ object Build {
137137
* We can use nightly versions to tests the future compatibility in development.
138138
* Nightly versions: https://scala-ci.typesafe.com/ui/native/scala-integration/org/scala-lang
139139
*/
140-
val stdlibBootstrappedVersion = "2.13.13"
140+
val stdlibBootstrappedVersion = "2.13.14"
141141

142142
val dottyOrganization = "org.scala-lang"
143143
val dottyGithubUrl = "https://github.com/lampepfl/dotty"

project/Scala2LibraryBootstrappedMiMaFilters.scala

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,10 @@ object Scala2LibraryBootstrappedMiMaFilters {
172172
"scala.collection.mutable.LinkedHashSet.defaultLoadFactor", // private[collection] final def
173173
"scala.collection.mutable.LinkedHashSet.defaultinitialSize", // private[collection] final def
174174
"scala.collection.mutable.OpenHashMap.nextPositivePowerOfTwo", // private[mutable] def
175+
// New in 2.13.13
176+
"scala.collection.mutable.ArrayBuffer.resizeUp", // private[mutable] def
177+
// New in 2.13.14
178+
"scala.util.Properties.consoleIsTerminal", // private[scala] lazy val
175179
).map(ProblemFilters.exclude[DirectMissingMethodProblem]) ++
176180
Seq( // MissingFieldProblem: static field ... in object ... does not have a correspondent in other version
177181
"scala.Array.UnapplySeqWrapper",

0 commit comments

Comments
 (0)