Skip to content

Commit a5c74e7

Browse files
SethTisueWojciechMazur
authored andcommitted
use Scala 2.13.13 stdlib (was .12)
1 parent edc8cbc commit a5c74e7

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed
Submodule stdLib213 updated 1814 files

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.12"
148-
case Bootstrapped => "2.13.12"
147+
case NonBootstrapped => "2.13.13"
148+
case Bootstrapped => "2.13.13"
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.12"
158+
val stdlibBootstrappedVersion = "2.13.13"
159159

160160
val dottyOrganization = "org.scala-lang"
161161
val dottyGithubUrl = "https://github.com/scala/scala3"
@@ -1358,7 +1358,7 @@ object Build {
13581358
"io.get-coursier" % "interface" % "1.0.18",
13591359
"org.scalameta" % "mtags-interfaces" % mtagsVersion,
13601360
),
1361-
libraryDependencies += ("org.scalameta" % "mtags-shared_2.13.12" % mtagsVersion % SourceDeps),
1361+
libraryDependencies += ("org.scalameta" % "mtags-shared_2.13.13" % mtagsVersion % SourceDeps),
13621362
ivyConfigurations += SourceDeps.hide,
13631363
transitiveClassifiers := Seq("sources"),
13641364
scalacOptions ++= Seq("-source", "3.3"), // To avoid fatal migration warnings

project/Scala2LibraryBootstrappedMiMaFilters.scala

-3
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,6 @@ object Scala2LibraryBootstrappedMiMaFilters {
7878
"scala.collection.IterableOnceOps#Maximized.this", // New in 2.13.11: private inner class
7979
"scala.util.Properties.<clinit>",
8080
"scala.util.Sorting.scala$util$Sorting$$mergeSort$default$5",
81-
// New in 2.13.12 -- can be removed once scala/scala#10549 lands in 2.13.13
82-
// and we take the upgrade here
83-
"scala.collection.immutable.MapNodeRemoveAllSetNodeIterator.next",
8481
).map(ProblemFilters.exclude[DirectMissingMethodProblem])
8582
}
8683
)

0 commit comments

Comments
 (0)