From 7d6997d68d55d51bd8ef9bf654bc6b44bfcde3d7 Mon Sep 17 00:00:00 2001 From: chick Date: Wed, 2 Dec 2020 20:59:21 -0800 Subject: [PATCH] Bump version strings. --- build.sbt | 4 ++-- build.sc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index 5af0c48..c2a770b 100644 --- a/build.sbt +++ b/build.sbt @@ -52,7 +52,7 @@ name := "firrtl-interpreter" organization := "edu.berkeley.cs" -version := "1.4.2" +version := "1.4.1" scalaVersion := "2.12.10" @@ -65,7 +65,7 @@ resolvers ++= Seq( ) // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. -val defaultVersions = Map("firrtl" -> "1.4.2") +val defaultVersions = Map("firrtl" -> "1.4.1") // Ignore dependencies on Berkeley artifacts. // scala-steward:off diff --git a/build.sc b/build.sc index 4eab3d1..260bd79 100644 --- a/build.sc +++ b/build.sc @@ -13,7 +13,7 @@ trait CrossUnRootedSbtModule extends CrossSbtModule { } trait CommonModule extends CrossUnRootedSbtModule with PublishModule { - def publishVersion = "1.4.2" + def publishVersion = "1.4.1" def pomSettings = PomSettings( description = artifactName(), @@ -69,7 +69,7 @@ object firrtlInterpreter extends Cross[FirrtlInterpreterModule](crossVersions: _ } // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. -val defaultVersions = Map("firrtl" -> "1.4.2") +val defaultVersions = Map("firrtl" -> "1.4.1") def getVersion(dep: String, org: String = "edu.berkeley.cs") = { val version = sys.env.getOrElse(dep + "Version", defaultVersions(dep))