Skip to content

Commit d41e4fb

Browse files
committed
Bump version strings.
1 parent c20fa69 commit d41e4fb

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

build.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = {
3535
}
3636

3737
organization := "edu.berkeley.cs"
38-
version := "1.5.0-RC3"
38+
version := "1.5.0"
3939
name := "chisel-iotesters"
4040

4141
scalaVersion := "2.12.10"
@@ -45,10 +45,10 @@ crossScalaVersions := Seq("2.12.10", "2.11.12")
4545
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
4646
// The following are the default development versions, not the "release" versions.
4747
val defaultVersions = Map(
48-
"chisel3" -> "3.4.0-RC3",
49-
"firrtl" -> "1.4.0-RC3",
50-
"firrtl-interpreter" -> "1.4.0-RC3",
51-
"treadle" -> "1.3.0-RC3"
48+
"chisel3" -> "3.4.0",
49+
"firrtl" -> "1.4.0",
50+
"firrtl-interpreter" -> "1.4.0",
51+
"treadle" -> "1.3.0"
5252
)
5353

5454
libraryDependencies ++= Seq("chisel3","firrtl","firrtl-interpreter", "treadle").map { dep: String =>

build.sc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ trait CrossUnRootedSbtModule extends CrossSbtModule {
1313
}
1414

1515
trait CommonModule extends CrossUnRootedSbtModule with PublishModule {
16-
def publishVersion = "1.5.0-RC3"
16+
def publishVersion = "1.5.0"
1717

1818
def pomSettings = PomSettings(
1919
description = artifactName(),
@@ -71,10 +71,10 @@ object chiselTesters extends Cross[ChiselTestersModule](crossVersions: _*) {
7171
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
7272
// The following are the default development versions, not the "release" versions.
7373
val defaultVersions = Map(
74-
"chisel3" -> "3.4.0-RC3",
75-
"firrtl" -> "1.4.0-RC3",
76-
"firrtl-interpreter" -> "1.4.0-RC3",
77-
"treadle" -> "1.3.0-RC3"
74+
"chisel3" -> "3.4.0",
75+
"firrtl" -> "1.4.0",
76+
"firrtl-interpreter" -> "1.4.0",
77+
"treadle" -> "1.3.0"
7878
)
7979

8080
def getVersion(dep: String, org: String = "edu.berkeley.cs") = {

0 commit comments

Comments
 (0)