Skip to content

Commit

Permalink
Update scala-compiler, scala-library, ... to 2.13.16
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Jan 16, 2025
1 parent 751971a commit 2751cc5
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//> using repository "sonatype-s01:snapshots"
//> using scala "2.13.15"
//> using scala "2.13.16"
//> using dep "org.chipsalliance::chisel:@VERSION@"
//> using plugin "org.chipsalliance:::chisel-plugin:@VERSION@"
//> using options "-unchecked", "-deprecation", "-language:reflectiveCalls", "-feature", "-Xcheckinit", "-Xfatal-warnings", "-Ywarn-dead-code", "-Ywarn-unused", "-Ymacro-annotations"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-circt-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
matrix:
system: ["ubuntu-22.04"]
jvm: [8]
scala: ["2.13.15"]
scala: ["2.13.16"]
espresso: ["2.4"]
slang: ["7.0"]
circt: ["nightly"]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
matrix:
system: ["ubuntu-22.04"]
jvm: [8]
scala: ["2.13.15"]
scala: ["2.13.16"]
espresso: ["2.4"]
slang: ["7.0"]
uses: ./.github/workflows/test.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
scala: ["2.13.15"]
scala: ["2.13.16"]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ emitLatestVersion := {
lazy val minimalSettings = Seq(
organization := "org.chipsalliance",
scalacOptions := Seq("-deprecation", "-feature"),
scalaVersion := "2.13.15"
scalaVersion := "2.13.16"
)

lazy val commonSettings = minimalSettings ++ Seq(
Expand Down Expand Up @@ -69,7 +69,7 @@ lazy val warningSuppression = Seq(
"cat=deprecation&origin=chisel3\\.util\\.experimental\\.BoringUtils.*:s",
"cat=deprecation&origin=chisel3\\.experimental\\.IntrinsicModule:s",
"cat=deprecation&origin=chisel3\\.ltl.*:s",
"cat=deprecation&msg=Looking up Modules is deprecated:s",
"cat=deprecation&msg=Looking up Modules is deprecated:s"
).mkString(",")
)

Expand Down Expand Up @@ -124,7 +124,7 @@ lazy val firrtlSettings = Seq(
"-language:implicitConversions",
"-Yrangepos", // required by SemanticDB compiler plugin
"-Xsource:3",
"-Xsource-features:infer-override",
"-Xsource-features:infer-override"
),
// Always target Java8 for maximum compatibility
javacOptions ++= Seq("-source", "1.8", "-target", "1.8"),
Expand Down Expand Up @@ -316,7 +316,7 @@ lazy val core = (project in file("core"))
"-unchecked",
"-Xcheckinit",
"-Xlint:infer-any",
"-Xsource:3",
"-Xsource:3"
// , "-Xlint:missing-interpolator"
)
)
Expand All @@ -342,7 +342,7 @@ lazy val chisel = (project in file("."))
.settings(
// Suppress Scala 3 behavior requiring explicit types on implicit definitions
// Note this must come before the -Wconf is warningSuppression
Test / scalacOptions += "-Wconf:cat=other-implicit-type:s",
Test / scalacOptions += "-Wconf:cat=other-implicit-type:s"
)
.settings(warningSuppression: _*)
.settings(fatalWarningsSettings: _*)
Expand Down

0 comments on commit 2751cc5

Please sign in to comment.