Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ucbjrl committed Mar 9, 2020
1 parent 02828b8 commit bf0def9
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 @@ -5,7 +5,7 @@ resolvers ++= Seq(
Resolver.sonatypeRepo("releases")
)
organization := "edu.berkeley.cs"
version := "1.1.3"
version := "1.1.4"
autoAPIMappings := true
scalaVersion := "2.12.7"
crossScalaVersions := Seq("2.12.7", "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.2.3"
"chisel3" -> "3.2.4"
)

libraryDependencies ++= Seq("chisel3").map {
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.3"
def publishVersion = "1.1.4"

def pomSettings = PomSettings(
description = artifactName(),
Expand Down Expand Up @@ -74,7 +74,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.2.3")
val defaultVersions = Map("chisel3" -> "3.2.4")

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

0 comments on commit bf0def9

Please sign in to comment.