Skip to content

Commit 8a1e5ba

Browse files
committed
mock-array: upgrade to Chisel 3.6.1 and chiseltest 0.6.2
Verified that there is no change in generated Verilog. Upgrading is just to take a question off the table w.r.t. a problem with post-synthesis simulation in current communication about future PR. Signed-off-by: Øyvind Harboe <[email protected]>
1 parent 3cf22e5 commit 8a1e5ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

flow/designs/src/mock-array/build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ scalaVersion := "2.13.6"
88
scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked", "-language:reflectiveCalls")
99

1010
val defaultVersions = Map(
11-
"chisel3" -> "3.6.0-RC2",
12-
"chiseltest" -> "0.6.0-RC2"
11+
"chisel3" -> "3.6.1",
12+
"chiseltest" -> "0.6.2"
1313
)
1414

1515
libraryDependencies ++= (Seq("chisel3", "chiseltest").map { dep: String =>
1616
"edu.berkeley.cs" %% dep % sys.props
1717
.getOrElse(dep + "Version", defaultVersions(dep)) withSources () withJavadoc ()
1818
})
1919

20-
addCompilerPlugin("edu.berkeley.cs" % "chisel3-plugin" % "3.6.0-RC2" cross CrossVersion.full)
20+
addCompilerPlugin("edu.berkeley.cs" % "chisel3-plugin" % "3.6.1" cross CrossVersion.full)
2121

2222
libraryDependencies += "com.github.scopt" %% "scopt" % "4.0.0"
2323

0 commit comments

Comments
 (0)