Skip to content

Commit 3e716b2

Browse files
Scala 2.13.12 (was 2.13.10) (#18525)
2 parents b1fc943 + b66c2cd commit 3e716b2

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed
Submodule stdLib213 updated 489 files

presentation-compiler/test/dotty/tools/pc/tests/completion/CompletionSuite.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -852,8 +852,8 @@ class CompletionSuite extends BaseCompletionSuite:
852852
"""|dynamics scala.languageFeature
853853
|existentials scala.languageFeature
854854
|experimental scala.languageFeature
855-
|higherKinds scala.languageFeature
856855
|implicitConversions scala.languageFeature
856+
|postfixOps scala.languageFeature
857857
|""".stripMargin,
858858
topLines = Some(5)
859859
)

project/Build.scala

+3-3
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ object Build {
123123
* scala-library.
124124
*/
125125
def stdlibVersion(implicit mode: Mode): String = mode match {
126-
case NonBootstrapped => "2.13.10"
127-
case Bootstrapped => "2.13.10"
126+
case NonBootstrapped => "2.13.12"
127+
case Bootstrapped => "2.13.12"
128128
}
129129

130130
/** Version of the scala-library for which we will generate TASTy.
@@ -134,7 +134,7 @@ object Build {
134134
* We can use nightly versions to tests the future compatibility in development.
135135
* Nightly versions: https://scala-ci.typesafe.com/ui/native/scala-integration/org/scala-lang
136136
*/
137-
val stdlibBootstrappedVersion = "2.13.12-bin-364ee69"
137+
val stdlibBootstrappedVersion = "2.13.12"
138138

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

project/MiMaFilters.scala

+3
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ object MiMaFilters {
9090
"scala.collection.IterableOnceOps#Maximized.this", // New in 2.13.11: private inner class
9191
"scala.util.Properties.<clinit>",
9292
"scala.util.Sorting.scala$util$Sorting$$mergeSort$default$5",
93+
// New in 2.13.12 -- can be removed once scala/scala#10549 lands in 2.13.13
94+
// and we take the upgrade here
95+
"scala.collection.immutable.MapNodeRemoveAllSetNodeIterator.next",
9396
).map(ProblemFilters.exclude[DirectMissingMethodProblem])
9497
}
9598
)

0 commit comments

Comments
 (0)