diff --git a/build.sbt b/build.sbt index 9058d66..68b27f2 100644 --- a/build.sbt +++ b/build.sbt @@ -5,7 +5,7 @@ resolvers ++= Seq( Resolver.sonatypeRepo("releases") ) organization := "edu.berkeley.cs" -version := "1.1.6" +version := "1.1.7" autoAPIMappings := true scalaVersion := "2.12.7" crossScalaVersions := Seq("2.12.7", "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.2.6" + "chisel3" -> "3.2.7" ) libraryDependencies ++= Seq("chisel3").map { diff --git a/build.sc b/build.sc index 3c53f4f..2c8c0c6 100644 --- a/build.sc +++ b/build.sc @@ -13,7 +13,7 @@ trait CrossUnRootedSbtModule extends CrossSbtModule { } trait CommonModule extends CrossUnRootedSbtModule with PublishModule { - def publishVersion = "1.1.6" + def publishVersion = "1.1.7" def pomSettings = PomSettings( description = artifactName(), @@ -74,7 +74,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.2.6") +val defaultVersions = Map("chisel3" -> "3.2.7") def getVersion(dep: String, org: String = "edu.berkeley.cs") = { val version = sys.env.getOrElse(dep + "Version", defaultVersions(dep))