Skip to content

Commit

Permalink
Bump Chisel to 6.6.0, Bump Scala to 2.13.15 (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkoenig authored Dec 4, 2024
1 parent 29b1f00 commit 9a65423
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// See README.md for license details.

ThisBuild / scalaVersion := "2.13.12"
ThisBuild / scalaVersion := "2.13.15"
ThisBuild / version := "0.1.0"
ThisBuild / organization := "%ORGANIZATION%"

val chiselVersion = "6.2.0"
val chiselVersion = "6.6.0"

lazy val root = (project in file("."))
.settings(
Expand Down
6 changes: 3 additions & 3 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ import mill.bsp._

object %NAME% extends SbtModule { m =>
override def millSourcePath = os.pwd
override def scalaVersion = "2.13.12"
override def scalaVersion = "2.13.15"
override def scalacOptions = Seq(
"-language:reflectiveCalls",
"-deprecation",
"-feature",
"-Xcheckinit",
)
override def ivyDeps = Agg(
ivy"org.chipsalliance::chisel:6.2.0",
ivy"org.chipsalliance::chisel:6.6.0",
)
override def scalacPluginIvyDeps = Agg(
ivy"org.chipsalliance:::chisel-plugin:6.2.0",
ivy"org.chipsalliance:::chisel-plugin:6.6.0",
)
object test extends SbtModuleTests with TestModule.ScalaTest {
override def ivyDeps = m.ivyDeps() ++ Agg(
Expand Down

0 comments on commit 9a65423

Please sign in to comment.