Skip to content

Commit

Permalink
Update scala-compiler, scala-library to 2.13.15 (#1446)
Browse files Browse the repository at this point in the history
Co-authored-by: Seth Tisue <[email protected]>
  • Loading branch information
scala-steward and SethTisue authored Oct 15, 2024
1 parent 95ec4bc commit be2aa98
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ trait CompilingSpecification extends AbstractBridgeProviderTestkit {
.get("zinc.build.compilerbridge.scalaVersion")
.getOrElse(sys.error("zinc.build.compilerbridge.scalaVersion property not found"))
def maxErrors = 100
def scala213 = "2.13.14"
def scala213 = "2.13.15"

def scalaCompiler(instance: xsbti.compile.ScalaInstance, bridgeJar: Path): AnalyzingCompiler = {
val bridgeProvider = ZincUtil.constantBridgeProvider(instance, bridgeJar)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ private[xsbt] class ZincBenchmark(toCompile: BenchmarkProject, zincEnabled: Bool
private[xsbt] object ZincBenchmark {
// This is the Scala version used to compile the benchmark project
// do not use `scala.util.Properties.versionNumberString`.
val scalaVersion = "2.13.14"
val scalaVersion = "2.13.15"

/* ************************************************************* */
/* Utils to programmatically instantiate Compiler from sbt setup */
Expand Down
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ object Dependencies {
val scala210 = "2.10.7"
val scala211 = "2.11.12"
val scala212 = "2.12.20"
val scala213 = "2.13.14"
val scala213 = "2.13.15"
val scala3ForBridge = "3.3.1"
val scala213ForBridge = "2.13.14"
val scala213ForBridge = "2.13.15"
val defaultScalaVersion = scala212
val compilerBridgeVersions = Seq(scala212, scala210, scala211, scala213)
val scala212_213 = Seq(defaultScalaVersion, scala213)
Expand Down

0 comments on commit be2aa98

Please sign in to comment.