summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/test.yml4
-rw-r--r--build.sbt5
-rw-r--r--build.sc2
-rw-r--r--project/plugins.sbt2
4 files changed, 7 insertions, 6 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index f9c2b2b0..a9322492 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- scala: [2.12.12]
+ scala: [2.12.13]
container:
image: ucbbar/chisel3-tools
options: --user github --entrypoint /bin/bash
@@ -32,7 +32,7 @@ jobs:
- name: Cache Scala
uses: coursier/cache-action@v5
- name: Documentation (Scala 2.12 only)
- if: matrix.scala == '2.12.12'
+ if: matrix.scala == '2.12.13'
run: sbt ++${{ matrix.scala }} docs/mdoc
- name: Test
run: sbt ++${{ matrix.scala }} test
diff --git a/build.sbt b/build.sbt
index 5030c016..2400233a 100644
--- a/build.sbt
+++ b/build.sbt
@@ -15,8 +15,8 @@ lazy val commonSettings = Seq (
organization := "edu.berkeley.cs",
version := "3.5-SNAPSHOT",
autoAPIMappings := true,
- scalaVersion := "2.12.12",
- crossScalaVersions := Seq("2.12.12"),
+ scalaVersion := "2.12.13",
+ crossScalaVersions := Seq("2.12.13"),
scalacOptions := Seq("-deprecation", "-feature",
),
libraryDependencies += "org.scala-lang" % "scala-reflect" % scalaVersion.value,
@@ -92,6 +92,7 @@ lazy val pluginScalaVersions = Seq(
"2.12.10",
"2.12.11",
"2.12.12",
+ "2.12.13",
)
lazy val plugin = (project in file("plugin")).
diff --git a/build.sc b/build.sc
index c37b748b..78b9307e 100644
--- a/build.sc
+++ b/build.sc
@@ -5,7 +5,7 @@ import coursier.maven.MavenRepository
import $ivy.`com.lihaoyi::mill-contrib-buildinfo:$MILL_VERSION`
import mill.contrib.buildinfo.BuildInfo
-object chisel3 extends mill.Cross[chisel3CrossModule]("2.12.12")
+object chisel3 extends mill.Cross[chisel3CrossModule]("2.12.13")
// The following stanza is searched for and used when preparing releases.
// Please retain it.
diff --git a/project/plugins.sbt b/project/plugins.sbt
index 5c73d56e..482c2201 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -16,7 +16,7 @@ addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.9.15")
addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.0")
-addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.2.5" )
+addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.2.16" )
addSbtPlugin("com.eed3si9n" % "sbt-sriracha" % "0.1.0")