From 4bc31ca3dda10f663235172f04693904326262b7 Mon Sep 17 00:00:00 2001 From: Jack Koenig Date: Wed, 31 Mar 2021 14:31:57 -0700 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 4bd18a4..a9d4d80 100644 --- a/build.sbt +++ b/build.sbt @@ -7,7 +7,7 @@ resolvers ++= Seq( Resolver.sonatypeRepo("releases") ) organization := "edu.berkeley.cs" -version := "1.3.2" +version := "1.3.3" autoAPIMappings := true scalaVersion := "2.12.10" crossScalaVersions := Seq("2.12.10", "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.4.2" + "chisel3" -> "3.4.3" ) libraryDependencies ++= Seq("chisel3").map { dep: String => diff --git a/build.sc b/build.sc index 7ef05f5..d7ca231 100644 --- a/build.sc +++ b/build.sc @@ -15,7 +15,7 @@ trait CrossUnRootedSbtModule extends CrossSbtModule { } trait CommonModule extends CrossUnRootedSbtModule with PublishModule { - def publishVersion = "1.3.2" + def publishVersion = "1.3.3" def pomSettings = PomSettings( description = artifactName(), @@ -77,7 +77,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.4.2") +val defaultVersions = Map("chisel3" -> "3.4.3") def getVersion(dep: String, org: String = "edu.berkeley.cs") = { val version = sys.env.getOrElse(dep + "Version", defaultVersions(dep))