From 6ca4fec6117b58a58e628f55c3eac46d4b15d03a Mon Sep 17 00:00:00 2001 From: Jim Lawson Date: Wed, 29 Apr 2020 11:23:21 -0700 Subject: [PATCH] Bump versions. --- build.sbt | 4 ++-- build.sc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index 7d7380af..7d7f6797 100644 --- a/build.sbt +++ b/build.sbt @@ -44,7 +44,7 @@ name := "treadle" organization := "edu.berkeley.cs" -version := "1.2.0-RC3" +version := "1.2.0" scalaVersion := "2.12.10" @@ -71,7 +71,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.3.0-RC3") +val defaultVersions = Map("firrtl" -> "1.3.0") 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 e0d13894..8953c305 100644 --- a/build.sc +++ b/build.sc @@ -13,7 +13,7 @@ trait CrossUnRootedSbtModule extends CrossSbtModule { } trait CommonModule extends CrossUnRootedSbtModule with PublishModule { - def publishVersion = "1.2.0-RC3" + def publishVersion = "1.2.0" def pomSettings = PomSettings( description = artifactName(), @@ -71,7 +71,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.3.0-RC3") +val defaultVersions = Map("firrtl" -> "1.3.0") def getVersion(dep: String, org: String = "edu.berkeley.cs") = { val version = sys.env.getOrElse(dep + "Version", defaultVersions(dep))