summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSchuyler Eldridge2018-09-07 15:24:58 -0400
committerGitHub2018-09-07 15:24:58 -0400
commit69d247becb5d66c566ba4face2852516dd28cde2 (patch)
treeb849bf1ab8db35531b5e674931b61f06d77dda54
parenta5185d2c7935c19d1628440d6e8eef579cfee895 (diff)
Bump scopt from 3.6.0 -> 3.7.0 (#877)
This bumps scopt from 3.6.0 to 3.7.0 to align with FIRRTL. FIRRTL requires 3.7.0+ for added scopt methods that allow introspection of options (e.g., examing the short options of a long option). This bump avoids a compile-time warning due to the version mistmatch. Signed-off-by: Schuyler Eldridge <schuyler.eldridge@ibm.com>
-rw-r--r--build.sbt2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index ab4d02e3..cf41a0ab 100644
--- a/build.sbt
+++ b/build.sbt
@@ -102,7 +102,7 @@ lazy val chiselSettings = Seq (
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"org.scalacheck" %% "scalacheck" % "1.13.4" % "test",
- "com.github.scopt" %% "scopt" % "3.6.0"
+ "com.github.scopt" %% "scopt" % "3.7.0"
),
// Tests from other projects may still run concurrently.