Skip to content

Commit 7465d5b

Browse files
authored
Updatedeprecated (#743)
* Update ChangeLog, ReleaseNotes, next version number. * Update (deprecated) Fill arg order.
1 parent 12522b1 commit 7465d5b

File tree

4 files changed

+8
-16
lines changed

4 files changed

+8
-16
lines changed

ChangeLog

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
1-
ChangeLog for Chisel v2.2.36
1+
ChangeLog for Chisel v2.2.37
22

3-
Print Chisel version when Driver object is created.
4-
Generate 'buildinfo' when Chisel jar is built.
5-
Update sbt project name from "chisel" to "Chisel" (to match package name).
6-
Add support for chisel3 wrappers (IO(), Input(), Output()).
7-
Warn about uninstantiable backends.
8-
Add scalacheck as a library dependency.
9-
Move ChiselSpec.scala from test to main (required for new tester support).
10-
Add Chisel3 clock methods.
11-
Deprecate Fill(Chisel.Data, Int) and generate error in compatibility mode.
3+
#740 Wide rom fix
4+
Remove Getting Started and refer to Chisel3.
5+
Update README.md (point to Chisel3, add Resolvers to getting started build.sbt

ReleaseNotes

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
ReleaseNotes for Chisel v2.2.36
1+
ReleaseNotes for Chisel v2.2.37
22

3-
This release of Chisel is largely a maintenance release, incorporating some Chisel3 features and additional compatibility checks.
4-
5-
See the associated Changelog for issues resolved with this release.
3+
This release of Chisel is a maintenance release, incorporating a bug fix for issue #740 - unable to create a ROM with datawidth more than 64 bits.
64

75
We will be removing support for Scala 2.10 in future Chisel
86
releases. Please verify your code compiles and runs correctly under

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ def versionToArray(v: String): Array[String] = v.split('.')
22

33
lazy val chiselBuildSettings = Seq (
44
organization := "edu.berkeley.cs",
5-
// version := "2.2.37",
5+
// version := "2.2.38",
66
version := "2.3-SNAPSHOT",
77
name := "Chisel",
88
scalaVersion := "2.11.7",

src/test/scala/FillApp.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class FillSuite extends TestSuite {
1313
val io = new Bundle {
1414
val a = UInt(INPUT, 4)
1515
}
16-
val f = Fill(UInt(1,1), 3)
16+
val f = Fill(3, UInt(1,1))
1717
}
1818

1919
val testArgs = chiselEnvironmentArguments() ++ Array("--targetDir", dir.getPath.toString(),

0 commit comments

Comments
 (0)