Skip to content

Commit a1d61d5

Browse files
committed
Bump version strings.
1 parent ecab58f commit a1d61d5

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
@@ -21,7 +21,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = {
2121
}
2222

2323
organization := "edu.berkeley.cs"
24-
version := "2.5.0-RC2"
24+
version := "2.5.0"
2525
name := "chisel-iotesters"
2626

2727
scalaVersion := "2.12.14"
@@ -31,10 +31,10 @@ crossScalaVersions := Seq("2.12.14", "2.13.6")
3131
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
3232
// The following are the default development versions, not the "release" versions.
3333
val defaultVersions = Map(
34-
"chisel3" -> "3.5.0-RC2",
35-
"firrtl" -> "1.5.0-RC2",
36-
"firrtl-interpreter" -> "1.5.0-RC2",
37-
"treadle" -> "1.5.0-RC2"
34+
"chisel3" -> "3.5.0",
35+
"firrtl" -> "1.5.0",
36+
"firrtl-interpreter" -> "1.5.0",
37+
"treadle" -> "1.5.0"
3838
)
3939

4040
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
@@ -16,7 +16,7 @@ trait CrossUnRootedSbtModule extends CrossSbtModule {
1616
}
1717

1818
trait CommonModule extends CrossUnRootedSbtModule with PublishModule {
19-
def publishVersion = "2.5.0-RC2"
19+
def publishVersion = "2.5.0"
2020

2121
def pomSettings = PomSettings(
2222
description = artifactName(),
@@ -79,10 +79,10 @@ object chiselTesters extends Cross[ChiselTestersModule](crossVersions: _*) {
7979
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
8080
// The following are the default development versions, not the "release" versions.
8181
val defaultVersions = Map(
82-
"chisel3" -> "3.5.0-RC2",
83-
"firrtl" -> "1.5.0-RC2",
84-
"firrtl-interpreter" -> "1.5.0-RC2",
85-
"treadle" -> "1.5.0-RC2"
82+
"chisel3" -> "3.5.0",
83+
"firrtl" -> "1.5.0",
84+
"firrtl-interpreter" -> "1.5.0",
85+
"treadle" -> "1.5.0"
8686
)
8787

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

0 commit comments

Comments
 (0)