Skip to content

Commit

Permalink
Upgrade Scala 2 to 2.13.14
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed Jul 1, 2024
1 parent 374719e commit 3652d27
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ object Build {
* scala-library.
*/
def stdlibVersion(implicit mode: Mode): String = mode match {
case NonBootstrapped => "2.13.13"
case Bootstrapped => "2.13.13"
case NonBootstrapped => "2.13.14"
case Bootstrapped => "2.13.14"
}

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

val dottyOrganization = "org.scala-lang"
val dottyGithubUrl = "https://github.com/lampepfl/dotty"
Expand Down
6 changes: 4 additions & 2 deletions project/Scala2LibraryBootstrappedMiMaFilters.scala
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@ object Scala2LibraryBootstrappedMiMaFilters {
"scala.collection.IterableOnceOps#Maximized.this", // New in 2.13.11: private inner class
"scala.util.Properties.<clinit>",
"scala.util.Sorting.scala$util$Sorting$$mergeSort$default$5",
// New in 2.13.13
"scala.collection.mutable.ArrayBuffer.resizeUp",
).map(ProblemFilters.exclude[DirectMissingMethodProblem])
}
)
Expand Down Expand Up @@ -174,6 +172,10 @@ object Scala2LibraryBootstrappedMiMaFilters {
"scala.collection.mutable.LinkedHashSet.defaultLoadFactor", // private[collection] final def
"scala.collection.mutable.LinkedHashSet.defaultinitialSize", // private[collection] final def
"scala.collection.mutable.OpenHashMap.nextPositivePowerOfTwo", // private[mutable] def
// New in 2.13.13
"scala.collection.mutable.ArrayBuffer.resizeUp", // private[mutable] def
// New in 2.13.14
"scala.util.Properties.consoleIsTerminal", // private[scala] lazy val
).map(ProblemFilters.exclude[DirectMissingMethodProblem]) ++
Seq( // MissingFieldProblem: static field ... in object ... does not have a correspondent in other version
"scala.Array.UnapplySeqWrapper",
Expand Down

0 comments on commit 3652d27

Please sign in to comment.