Skip to content

Commit 669bca2

Browse files
authored
[firrtl] Bump serializer version to 5.1.0 (#4879)
Bump the version of serialized FIRRTL to version 5.1.0. This was mistakenly not bumped when the version was updated in Chisel. Signed-off-by: Schuyler Eldridge <[email protected]>
1 parent 990d37a commit 669bca2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

firrtl/src/main/scala/firrtl/ir/Serializer.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ object Serializer {
1717
val Indent = " "
1818

1919
// The version supported by the serializer.
20-
val version = Version(4, 2, 0)
20+
val version = Version(5, 1, 0)
2121

2222
/** Converts a `FirrtlNode` into its string representation with
2323
* default indentation.

firrtl/src/test/scala/firrtlTests/ExtModuleTests.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import firrtl.testutils._
88
class ExtModuleTests extends FirrtlFlatSpec {
99
"extmodule" should "serialize and re-parse equivalently" in {
1010
val input =
11-
"""|FIRRTL version 4.2.0
11+
"""|FIRRTL version 5.1.0
1212
|circuit Top :
1313
| extmodule Top :
1414
| input y : UInt<0>

0 commit comments

Comments
 (0)