diff --git a/build.sbt b/build.sbt index 4bd18a4..8df1616 100644 --- a/build.sbt +++ b/build.sbt @@ -7,7 +7,7 @@ resolvers ++= Seq( Resolver.sonatypeRepo("releases") ) organization := "edu.berkeley.cs" -version := "1.3.2" +version := "1.3.1" autoAPIMappings := true scalaVersion := "2.12.10" crossScalaVersions := Seq("2.12.10", "2.11.12") @@ -81,7 +81,7 @@ publishTo := { // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. val defaultVersions = Map( - "chisel3" -> "3.4.2" + "chisel3" -> "3.4.1" ) libraryDependencies ++= Seq("chisel3").map { dep: String => diff --git a/build.sc b/build.sc index 7ef05f5..060f814 100644 --- a/build.sc +++ b/build.sc @@ -15,7 +15,7 @@ trait CrossUnRootedSbtModule extends CrossSbtModule { } trait CommonModule extends CrossUnRootedSbtModule with PublishModule { - def publishVersion = "1.3.2" + def publishVersion = "1.3.1" def pomSettings = PomSettings( description = artifactName(), @@ -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.4.2") +val defaultVersions = Map("chisel3" -> "3.4.1") def getVersion(dep: String, org: String = "edu.berkeley.cs") = { val version = sys.env.getOrElse(dep + "Version", defaultVersions(dep))