From c204e79b59678707a011907fe2962650180b8d1b Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Wed, 12 Jan 2022 08:32:39 +0100 Subject: [PATCH] Update chisel3 to 3.5.0 --- build.sbt | 4 ++-- build.sc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 9dac877..63928eb 100644 --- a/build.sbt +++ b/build.sbt @@ -54,7 +54,7 @@ publishTo := { // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. val defaultVersions = Map( - "chisel3" -> "3.5-SNAPSHOT" + "chisel3" -> "3.5.0" ) libraryDependencies ++= Seq("chisel3").map { dep: String => @@ -62,7 +62,7 @@ libraryDependencies ++= Seq("chisel3").map { dep: String => } libraryDependencies ++= Seq( - "org.scalatest" %% "scalatest" % "3.2.9" % "test", + "org.scalatest" %% "scalatest" % "3.2.9" % "test" ) scalacOptions in Compile ++= Seq( diff --git a/build.sc b/build.sc index dcec89b..e11ef16 100644 --- a/build.sc +++ b/build.sc @@ -77,7 +77,7 @@ object diagrammer extends Cross[DiagrammerModule](crossVersions: _*) { } // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. -val defaultVersions = Map("chisel3" -> "3.5-SNAPSHOT") +val defaultVersions = Map("chisel3" -> "3.5.0") def getVersion(dep: String, org: String = "edu.berkeley.cs") = { val version = sys.env.getOrElse(dep + "Version", defaultVersions(dep))