Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
Bump minor version.
Browse files Browse the repository at this point in the history
  • Loading branch information
ucbjrl committed Feb 20, 2020
1 parent 4e07c2d commit 0d9f5a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ name := "treadle"

organization := "edu.berkeley.cs"

version := "1.1-SNAPSHOT"
version := "1.1.3"

scalaVersion := "2.12.7"

Expand All @@ -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-SNAPSHOT")
val defaultVersions = Map("firrtl" -> "1.2.3")

libraryDependencies ++= (Seq("firrtl").map {
dep: String => "edu.berkeley.cs" %% dep % sys.props.getOrElse(dep + "Version", defaultVersions(dep)) })
Expand Down
4 changes: 2 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ trait CrossUnRootedSbtModule extends CrossSbtModule {
}

trait CommonModule extends CrossUnRootedSbtModule with PublishModule {
def publishVersion = "1.1-SNAPSHOT"
def publishVersion = "1.1.3"

def pomSettings = PomSettings(
description = artifactName(),
Expand Down Expand Up @@ -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-SNAPSHOT")
val defaultVersions = Map("firrtl" -> "1.2.3")

def getVersion(dep: String, org: String = "edu.berkeley.cs") = {
val version = sys.env.getOrElse(dep + "Version", defaultVersions(dep))
Expand Down

0 comments on commit 0d9f5a5

Please sign in to comment.