diff --git a/build.sbt b/build.sbt index d3864135b..7e9a0545d 100644 --- a/build.sbt +++ b/build.sbt @@ -29,7 +29,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = { organization := "edu.berkeley.cs" name := "chiseltest" -version := "0.3.2" +version := "0.3.3" scalaVersion := "2.12.10" @@ -87,8 +87,8 @@ publishTo := { // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. val defaultVersions = Seq( - "chisel3" -> "3.4.2", - "treadle" -> "1.3.2" + "chisel3" -> "3.4.3", + "treadle" -> "1.3.3" ) libraryDependencies ++= defaultVersions.map { case (dep, ver) => diff --git a/build.sc b/build.sc index 3719cc23c..b0a5be919 100644 --- a/build.sc +++ b/build.sc @@ -8,8 +8,8 @@ import mill.scalalib.publish._ object chiseltest extends mill.Cross[chiseltestCrossModule]("2.11.12", "2.12.10") val defaultVersions = Map( - "chisel3" -> "3.4.2", - "treadle" -> "1.3.2" + "chisel3" -> "3.4.3", + "treadle" -> "1.3.3" ) def getVersion(dep: String, org: String = "edu.berkeley.cs") = { @@ -35,7 +35,7 @@ class chiseltestCrossModule(val crossScalaVersion: String) extends CrossSbtModul // 2.12.12 -> Array("2", "12", "12") -> "12" -> 12 private def majorVersion = crossScalaVersion.split('.')(1).toInt - def publishVersion = "0.3.2" + def publishVersion = "0.3.3" private def javacCrossOptions = majorVersion match { case i if i < 12 => Seq("-source", "1.7", "-target", "1.7")