Skip to content

Commit

Permalink
Bump version strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
chick committed Dec 3, 2020
1 parent e0a28d9 commit 393cd61
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = {
}

val defaultVersions = Map(
"firrtl" -> "edu.berkeley.cs" %% "firrtl" % "1.4.2",
"treadle" -> "edu.berkeley.cs" %% "treadle" % "1.3.2"
"firrtl" -> "edu.berkeley.cs" %% "firrtl" % "1.4.1",
"treadle" -> "edu.berkeley.cs" %% "treadle" % "1.3.1"
)

lazy val commonSettings = Seq (
Expand All @@ -41,7 +41,7 @@ lazy val commonSettings = Seq (
Resolver.sonatypeRepo("releases")
),
organization := "edu.berkeley.cs",
version := "3.4.2",
version := "3.4.1",
autoAPIMappings := true,
scalaVersion := "2.12.12",
crossScalaVersions := Seq("2.12.12", "2.11.12"),
Expand Down
4 changes: 2 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ object chisel3 extends mill.Cross[chisel3CrossModule]("2.11.12", "2.12.12")
// Please retain it.
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
val defaultVersions = Map(
"firrtl" -> "1.4.2"
"firrtl" -> "1.4.1"
)

val testDefaultVersions = Map(
Expand Down Expand Up @@ -46,7 +46,7 @@ trait CommonModule extends CrossSbtModule with PublishModule {

override def ivyDeps = super.ivyDeps() ++ firrtlIvyDeps

def publishVersion = "3.4.2"
def publishVersion = "3.4.1"

// 2.12.10 -> Array("2", "12", "10") -> "12" -> 12
protected def majorVersion = crossScalaVersion.split('.')(1).toInt
Expand Down

0 comments on commit 393cd61

Please # to comment.