Skip to content

Commit e81b4a3

Browse files
committed
Upgrade Scala 2 to 2.13.14
1 parent cc2dd1e commit e81b4a3

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

Diff for: project/Build.scala

+4-4
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ object Build {
144144
* scala-library.
145145
*/
146146
def stdlibVersion(implicit mode: Mode): String = mode match {
147-
case NonBootstrapped => "2.13.13"
148-
case Bootstrapped => "2.13.13"
147+
case NonBootstrapped => "2.13.14"
148+
case Bootstrapped => "2.13.14"
149149
}
150150

151151
/** Version of the scala-library for which we will generate TASTy.
@@ -155,7 +155,7 @@ object Build {
155155
* We can use nightly versions to tests the future compatibility in development.
156156
* Nightly versions: https://scala-ci.typesafe.com/ui/native/scala-integration/org/scala-lang
157157
*/
158-
val stdlibBootstrappedVersion = "2.13.13"
158+
val stdlibBootstrappedVersion = "2.13.14"
159159

160160
val dottyOrganization = "org.scala-lang"
161161
val dottyGithubUrl = "https://github.com/scala/scala3"
@@ -1361,7 +1361,7 @@ object Build {
13611361
.exclude("org.eclipse.lsp4j","org.eclipse.lsp4j.jsonrpc"),
13621362
"org.eclipse.lsp4j" % "org.eclipse.lsp4j" % "0.20.1",
13631363
),
1364-
libraryDependencies += ("org.scalameta" % "mtags-shared_2.13.13" % mtagsVersion % SourceDeps),
1364+
libraryDependencies += ("org.scalameta" % "mtags-shared_2.13.14" % mtagsVersion % SourceDeps),
13651365
ivyConfigurations += SourceDeps.hide,
13661366
transitiveClassifiers := Seq("sources"),
13671367
scalacOptions ++= Seq("-source", "3.3"), // To avoid fatal migration warnings

Diff for: project/Scala2LibraryBootstrappedMiMaFilters.scala

+4
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)