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 Mar 31, 2021
1 parent 5860493 commit 6aab7da
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 @@ -29,7 +29,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = {
organization := "edu.berkeley.cs"
name := "chiseltest"

version := "0.3.2"
version := "0.3.3"

scalaVersion := "2.12.10"

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

// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
val defaultVersions = Seq(
"chisel3" -> "3.4.2",
"treadle" -> "1.3.2"
"chisel3" -> "3.4.3",
"treadle" -> "1.3.3"
)

libraryDependencies ++= defaultVersions.map { case (dep, ver) =>
Expand Down
6 changes: 3 additions & 3 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import mill.scalalib.publish._
object chiseltest extends mill.Cross[chiseltestCrossModule]("2.11.12", "2.12.10")

val defaultVersions = Map(
"chisel3" -> "3.4.2",
"treadle" -> "1.3.2"
"chisel3" -> "3.4.3",
"treadle" -> "1.3.3"
)

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

def publishVersion = "0.3.2"
def publishVersion = "0.3.3"

private def javacCrossOptions = majorVersion match {
case i if i < 12 => Seq("-source", "1.7", "-target", "1.7")
Expand Down

0 comments on commit 6aab7da

Please sign in to comment.