diff --git a/build.sbt b/build.sbt index 44948264..0ed97932 100644 --- a/build.sbt +++ b/build.sbt @@ -30,7 +30,7 @@ name := "treadle" organization := "edu.berkeley.cs" -version := "1.1.4" +version := "1.1.5" 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.4") +val defaultVersions = Map("firrtl" -> "1.2.5") 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 c32a2528..c9b4d89e 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.4" + def publishVersion = "1.1.5" 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.4") +val defaultVersions = Map("firrtl" -> "1.2.5") def getVersion(dep: String, org: String = "edu.berkeley.cs") = { val version = sys.env.getOrElse(dep + "Version", defaultVersions(dep))