Skip to content

Commit 1366be0

Browse files
committed
Bump versions for next release
1 parent 11ee36d commit 1366be0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = {
2828
}
2929
}
3030

31-
val defaultVersions = Map("firrtl" -> "1.2.1")
31+
val defaultVersions = Map("firrtl" -> "1.2.2")
3232

3333
lazy val commonSettings = Seq (
3434
resolvers ++= Seq(
3535
Resolver.sonatypeRepo("snapshots"),
3636
Resolver.sonatypeRepo("releases")
3737
),
3838
organization := "edu.berkeley.cs",
39-
version := "3.2.1",
39+
version := "3.2.2",
4040
autoAPIMappings := true,
4141
scalaVersion := "2.12.10",
4242
crossScalaVersions := Seq("2.12.10", "2.11.12"),

build.sc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ object chiselCompileOptions {
3535
val crossVersions = Seq("2.12.10", "2.11.12")
3636

3737
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
38-
val defaultVersions = Map("firrtl" -> "1.2.1")
38+
val defaultVersions = Map("firrtl" -> "1.2.2")
3939

4040
def getVersion(dep: String, org: String = "edu.berkeley.cs") = {
4141
val version = sys.env.getOrElse(dep + "Version", defaultVersions(dep))
@@ -67,7 +67,7 @@ trait CommonChiselModule extends SbtModule {
6767

6868
trait PublishChiselModule extends CommonChiselModule with PublishModule {
6969
override def artifactName = "chisel3"
70-
def publishVersion = "3.2.1"
70+
def publishVersion = "3.2.2"
7171

7272
def pomSettings = PomSettings(
7373
description = artifactName(),

0 commit comments

Comments
 (0)