From 022c9f07fcaae40e7bd1e37ad336702d4a20f5a0 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 12 Sep 2024 15:59:34 +0000 Subject: [PATCH] Update os-lib to 0.10.7 --- build.sbt | 4 ++-- build.sc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index a601050b267..2c065dfa801 100644 --- a/build.sbt +++ b/build.sbt @@ -133,7 +133,7 @@ lazy val firrtlSettings = Seq( "org.json4s" %% "json4s-native" % "4.0.7", "org.apache.commons" % "commons-text" % "1.12.0", "io.github.alexarchambault" %% "data-class" % "0.2.6", - "com.lihaoyi" %% "os-lib" % "0.10.0" + "com.lihaoyi" %% "os-lib" % "0.10.7" ), scalacOptions += "-Ymacro-annotations", // starting with scala 2.13 the parallel collections are separate from the standard library @@ -296,7 +296,7 @@ lazy val core = (project in file("core")) name := "chisel-core", libraryDependencies ++= Seq( "com.lihaoyi" %% "upickle" % "3.3.1", - "com.lihaoyi" %% "os-lib" % "0.10.0" + "com.lihaoyi" %% "os-lib" % "0.10.7" ), scalacOptions := scalacOptions.value ++ Seq( "-explaintypes", diff --git a/build.sc b/build.sc index ce668eaafb1..5afef03ce81 100644 --- a/build.sc +++ b/build.sc @@ -21,7 +21,7 @@ object v { ) val scalaVersion = scalaCrossVersions.head val jmhVersion = "1.37" - val osLib = ivy"com.lihaoyi::os-lib:0.10.0" + val osLib = ivy"com.lihaoyi::os-lib:0.10.7" val upickle = ivy"com.lihaoyi::upickle:3.3.1" val firtoolResolver = ivy"org.chipsalliance::firtool-resolver:2.0.0" val scalatest = ivy"org.scalatest::scalatest:3.2.19"