Skip to content

Commit b93dfa4

Browse files
authored
Bump emitted FIRRTL to 5.1.0 (#4841)
Bump the emitted FIRRTL version to 5.1.0. This is done because we want to start using the new `{{SimulationTime}}` printf construct. This is a major change to FIRRTL (as it is a backwards incompatible change) and therefore we have to go through the major bump. The minor bump needs to stay at "1" because we are still emitting things which are not in the FIRRTL spec, e.g., Path ops. Signed-off-by: Schuyler Eldridge <[email protected]>
1 parent b7ee721 commit b93dfa4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/src/main/scala/chisel3/internal/firrtl/Serializer.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ private[chisel3] object Serializer {
1919
private val Indent = " "
2020

2121
// The version supported by the serializer.
22-
val version = "4.2.0"
22+
val version = "5.1.0"
2323

2424
def getRef(id: HasId, sourceInfo: SourceInfo): Arg =
2525
id.getOptionRef.getOrElse {

src/test/scala-2/circtTests/stage/ChiselStageSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1087,7 +1087,7 @@ class ChiselStageSpec extends AnyFunSpec with Matchers with chiselTests.LogUtils
10871087

10881088
val text = ChiselStage.emitCHIRRTL(new ChiselStageSpec.Foo(hasDontTouch = true))
10891089
info("found a version string")
1090-
text should include("FIRRTL version 4.2.0")
1090+
text should include("FIRRTL version 5.1.0")
10911091
info("found an Annotation")
10921092
text should include("firrtl.transforms.DontTouchAnnotation")
10931093
info("found a circuit")

0 commit comments

Comments
 (0)