From 3745d9585bc81868023d5e0a82cd841750bde35a Mon Sep 17 00:00:00 2001 From: Jim Lawson Date: Thu, 20 Feb 2020 12:46:08 -0800 Subject: [PATCH] Bump minor version. --- build.sbt | 10 +++++----- build.sc | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/build.sbt b/build.sbt index fdd4a6ee..704c4ba4 100644 --- a/build.sbt +++ b/build.sbt @@ -35,7 +35,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = { } organization := "edu.berkeley.cs" -version := "1.3-SNAPSHOT" +version := "1.3.3" name := "chisel-iotesters" scalaVersion := "2.12.6" @@ -45,10 +45,10 @@ crossScalaVersions := Seq("2.12.6", "2.11.12") // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. // The following are the default development versions, not the "release" versions. val defaultVersions = Map( - "chisel3" -> "3.2-SNAPSHOT", - "firrtl" -> "1.2-SNAPSHOT", - "firrtl-interpreter" -> "1.2-SNAPSHOT", - "treadle" -> "1.1-SNAPSHOT" + "chisel3" -> "3.2.3", + "firrtl" -> "1.2.3", + "firrtl-interpreter" -> "1.2.3", + "treadle" -> "1.1.3" ) libraryDependencies ++= Seq("chisel3","firrtl","firrtl-interpreter", "treadle").map { dep: String => diff --git a/build.sc b/build.sc index 35d2ecdf..aa05ea98 100644 --- a/build.sc +++ b/build.sc @@ -13,7 +13,7 @@ trait CrossUnRootedSbtModule extends CrossSbtModule { } trait CommonModule extends CrossUnRootedSbtModule with PublishModule { - def publishVersion = "1.3-SNAPSHOT" + def publishVersion = "1.3.3" def pomSettings = PomSettings( description = artifactName(), @@ -71,10 +71,10 @@ object chiselTesters extends Cross[ChiselTestersModule](crossVersions: _*) { // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. // The following are the default development versions, not the "release" versions. val defaultVersions = Map( - "chisel3" -> "3.2-SNAPSHOT", - "firrtl" -> "1.2-SNAPSHOT", - "firrtl-interpreter" -> "1.2-SNAPSHOT", - "treadle" -> "1.1-SNAPSHOT" + "chisel3" -> "3.2.3", + "firrtl" -> "1.2.3", + "firrtl-interpreter" -> "1.2.3", + "treadle" -> "1.1.3" ) def getVersion(dep: String, org: String = "edu.berkeley.cs") = {