Skip to content

Commit f6bfa0a

Browse files
Scala 2.13.15 (was .14) (#21648)
Co-authored-by: Wojciech Mazur <[email protected]>
1 parent 472c047 commit f6bfa0a

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed
Submodule stdLib213 updated 1560 files

community-build/src/scala/dotty/communitybuild/projects.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -476,8 +476,8 @@ object projects:
476476

477477
lazy val scalaCollectionCompat = SbtCommunityProject(
478478
project = "scala-collection-compat",
479-
sbtTestCommand = "compat30/test",
480-
sbtPublishCommand = "compat30/publishLocal",
479+
sbtTestCommand = "compat3/test",
480+
sbtPublishCommand = "compat3/publishLocal",
481481
)
482482

483483
lazy val scalaJava8Compat = SbtCommunityProject(

project/Build.scala

+5-5
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ object Build {
149149
* scala-library.
150150
*/
151151
def stdlibVersion(implicit mode: Mode): String = mode match {
152-
case NonBootstrapped => "2.13.14"
153-
case Bootstrapped => "2.13.14"
152+
case NonBootstrapped => "2.13.15"
153+
case Bootstrapped => "2.13.15"
154154
}
155155

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

165165
val dottyOrganization = "org.scala-lang"
166166
val dottyGithubUrl = "https://github.com/scala/scala3"
@@ -1426,7 +1426,7 @@ object Build {
14261426
BuildInfoPlugin.buildInfoDefaultSettings
14271427

14281428
lazy val presentationCompilerSettings = {
1429-
val mtagsVersion = "1.3.4"
1429+
val mtagsVersion = "1.3.5"
14301430
Seq(
14311431
libraryDependencies ++= Seq(
14321432
"org.lz4" % "lz4-java" % "1.8.0",
@@ -1436,7 +1436,7 @@ object Build {
14361436
.exclude("org.eclipse.lsp4j","org.eclipse.lsp4j.jsonrpc"),
14371437
"org.eclipse.lsp4j" % "org.eclipse.lsp4j" % "0.20.1",
14381438
),
1439-
libraryDependencies += ("org.scalameta" % "mtags-shared_2.13.14" % mtagsVersion % SourceDeps),
1439+
libraryDependencies += ("org.scalameta" % "mtags-shared_2.13.15" % mtagsVersion % SourceDeps),
14401440
ivyConfigurations += SourceDeps.hide,
14411441
transitiveClassifiers := Seq("sources"),
14421442
scalacOptions ++= Seq("-source", "3.3"), // To avoid fatal migration warnings

0 commit comments

Comments
 (0)