Skip to content

Commit

Permalink
Bump version to 1.4-snapshot
Browse files Browse the repository at this point in the history
Bump dependency to chisel 1.5-snapshot
  • Loading branch information
chick authored and jackkoenig committed Dec 1, 2020
1 parent cfe9d1e commit a3d4d7e
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 @@ -7,7 +7,7 @@ resolvers ++= Seq(
Resolver.sonatypeRepo("releases")
)
organization := "edu.berkeley.cs"
version := "1.3-SNAPSHOT"
version := "1.4-SNAPSHOT"
autoAPIMappings := true
scalaVersion := "2.12.10"
crossScalaVersions := Seq("2.12.10", "2.11.12")
Expand Down Expand Up @@ -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-SNAPSHOT"
"chisel3" -> "3.5-SNAPSHOT"
)

libraryDependencies ++= Seq("chisel3").map { dep: String =>
Expand Down
4 changes: 2 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ trait CrossUnRootedSbtModule extends CrossSbtModule {
}

trait CommonModule extends CrossUnRootedSbtModule with PublishModule {
def publishVersion = "1.3-SNAPSHOT"
def publishVersion = "1.4-SNAPSHOT"

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

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

0 comments on commit a3d4d7e

Please sign in to comment.