summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authormergify[bot]2022-10-13 21:25:07 +0000
committerGitHub2022-10-13 21:25:07 +0000
commit1e9f4e99167d1bc132a1a1a04e6987c2161c4d0e (patch)
tree03395e639efa676389aa080e67cb798e771ade31 /README.md
parent0167a664c38273d7016a6f828dcafdeeff8d32cd (diff)
Bump to Scala 2.13.10 (backport #2774) (#2775)
* Bump to Scala 2.13.10 (#2774) 2.13.9 has a binary compatibility regression so should be avoided. (cherry picked from commit c53265d6853728280b6bc01b001415166515c79a) # Conflicts: # .github/workflows/test.yml * Fix backport conflicts * Fix scalaVersion in README * Waive binary compatibility check for plugin for 2.13.10 3.5.4 is published for 2.13.10 so we cannot check binary compatibility for it. Co-authored-by: Jack Koenig <koenig@sifive.com>
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 6a903dd6..a68ba261 100644
--- a/README.md
+++ b/README.md
@@ -222,10 +222,10 @@ For example, in SBT this could be expressed as:
```scala
// build.sbt
scalaVersion := "2.13.8"
-addCompilerPlugin("edu.berkeley.cs" % "chisel3-plugin" % "3.5.3" cross CrossVersion.full)
-libraryDependencies += "edu.berkeley.cs" %% "chisel3" % "3.5.3"
+addCompilerPlugin("edu.berkeley.cs" % "chisel3-plugin" % "3.5.4" cross CrossVersion.full)
+libraryDependencies += "edu.berkeley.cs" %% "chisel3" % "3.5.4"
// We also recommend using chiseltest for writing unit tests
-libraryDependencies += "edu.berkeley.cs" %% "chiseltest" % "0.5.3" % "test"
+libraryDependencies += "edu.berkeley.cs" %% "chiseltest" % "0.5.4" % "test"
```
### Guide For New Contributors