Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
chick committed Jun 23, 2020
1 parent 027e189 commit 2aa1632
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.6"
version := "1.1.7"
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.6"
"chisel3" -> "3.2.7"
)

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.6"
def publishVersion = "1.1.7"

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.6")
val defaultVersions = Map("chisel3" -> "3.2.7")

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

0 comments on commit 2aa1632

Please sign in to comment.