Skip to content

Commit

Permalink
Update upickle to 3.1.0 and os-lib to 0.9.1 (#3169)
Browse files Browse the repository at this point in the history
* Update upickle to 3.1.0
* Update os-lib to 0.9.1

---------

Co-authored-by: Jack Koenig <koenig@sifive.com>
  • Loading branch information
scala-steward and jackkoenig authored May 9, 2023
1 parent 7565f27 commit 36622f1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ lazy val firrtlSettings = Seq(
"org.json4s" %% "json4s-native" % "4.0.6",
"org.apache.commons" % "commons-text" % "1.10.0",
"io.github.alexarchambault" %% "data-class" % "0.2.6",
"com.lihaoyi" %% "os-lib" % "0.8.1"
"com.lihaoyi" %% "os-lib" % "0.9.1"
),
// macros for the data-class library
libraryDependencies ++= {
Expand Down Expand Up @@ -241,7 +241,7 @@ lazy val chiselSettings = Seq(
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.15" % "test",
"org.scalatestplus" %% "scalacheck-1-15" % "3.2.11.0" % "test",
"com.lihaoyi" %% "upickle" % "2.0.0"
"com.lihaoyi" %% "upickle" % "3.1.0"
)
) ++ (
// Tests from other projects may still run concurrently
Expand Down Expand Up @@ -347,8 +347,8 @@ lazy val core = (project in file("core"))
.settings(
name := "chisel-core",
libraryDependencies ++= Seq(
"com.lihaoyi" %% "upickle" % "2.0.0",
"com.lihaoyi" %% "os-lib" % "0.8.1"
"com.lihaoyi" %% "upickle" % "3.1.0",
"com.lihaoyi" %% "os-lib" % "0.9.1"
),
scalacOptions := scalacOptions.value ++ Seq(
"-explaintypes",
Expand Down
4 changes: 2 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ object v {
"2.12.17",
"2.13.10"
)
val osLib = ivy"com.lihaoyi::os-lib:0.8.1"
val upickle = ivy"com.lihaoyi::upickle:2.0.0"
val osLib = ivy"com.lihaoyi::os-lib:0.9.1"
val upickle = ivy"com.lihaoyi::upickle:3.1.0"
val macroParadise = ivy"org.scalamacros:::paradise:2.1.1"
val scalatest = ivy"org.scalatest::scalatest:3.2.14"
val scalacheck = ivy"org.scalatestplus::scalacheck-1-15:3.2.11.0"
Expand Down

0 comments on commit 36622f1

Please sign in to comment.