Skip to content
This repository has been archived by the owner on Aug 19, 2024. It is now read-only.

Commit

Permalink
Bump version strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkoenig committed Feb 16, 2023
1 parent d9016bb commit 002af1b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
organization := "edu.berkeley.cs"
name := "chiseltest"

version := "0.6.0-M2"
version := "0.6.0-RC1"

scalaVersion := "2.13.10"

Expand Down Expand Up @@ -49,8 +49,8 @@ publishTo := {

// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
val defaultVersions = Map(
"chisel3" -> "3.6.0-M2",
"treadle" -> "1.6.0-M2"
"chisel3" -> "3.6.0-RC1",
"treadle" -> "1.6.0-RC1"
)

scalacOptions ++= Seq(
Expand Down
6 changes: 3 additions & 3 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import coursier.maven.MavenRepository
object chiseltest extends mill.Cross[chiseltestCrossModule]("2.13.10")

val defaultVersions = Map(
"chisel3" -> "3.6.0-M2",
"treadle" -> "1.6.0-M2"
"chisel3" -> "3.6.0-RC1",
"treadle" -> "1.6.0-RC1"
)

def getVersion(dep: String, org: String = "edu.berkeley.cs") = {
Expand Down Expand Up @@ -53,7 +53,7 @@ class chiseltestCrossModule(val crossScalaVersion: String)
// 2.12.12 -> Array("2", "12", "12") -> "12" -> 12
private def majorVersion = crossScalaVersion.split('.')(1).toInt

def publishVersion = "0.6.0-M2"
def publishVersion = "0.6.0-RC1"

override def scalacOptions = T {
super.scalacOptions() ++ Seq(
Expand Down

0 comments on commit 002af1b

Please sign in to comment.