diff --git a/build.sbt b/build.sbt index 3757a496..d6957627 100644 --- a/build.sbt +++ b/build.sbt @@ -30,7 +30,7 @@ name := "treadle" organization := "edu.berkeley.cs" -version := "1.1.6" +version := "1.1.7" scalaVersion := "2.12.7" @@ -57,7 +57,7 @@ assemblyOutputPath in assembly := file("./utils/bin/treadle.jar") // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. -val defaultVersions = Map("firrtl" -> "1.2.6") +val defaultVersions = Map("firrtl" -> "1.2.7") libraryDependencies ++= (Seq("firrtl").map { dep: String => "edu.berkeley.cs" %% dep % sys.props.getOrElse(dep + "Version", defaultVersions(dep)) }) diff --git a/build.sc b/build.sc index 87d0ae9b..fb91d387 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(), @@ -69,7 +69,7 @@ object treadle extends Cross[TreadleModule](crossVersions: _*) { } // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. -val defaultVersions = Map("firrtl" -> "1.2.6") +val defaultVersions = Map("firrtl" -> "1.2.7") def getVersion(dep: String, org: String = "edu.berkeley.cs") = { val version = sys.env.getOrElse(dep + "Version", defaultVersions(dep))