Skip to content

Commit

Permalink
Update commons-text to 1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Dec 27, 2024
1 parent 4aaefff commit 37b5013
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ lazy val warningSuppression = Seq(
"cat=deprecation&origin=chisel3\\.util\\.experimental\\.BoringUtils.*:s",
"cat=deprecation&origin=chisel3\\.experimental\\.IntrinsicModule:s",
"cat=deprecation&origin=chisel3\\.ltl.*:s",
"cat=deprecation&msg=Looking up Modules is deprecated:s",
"cat=deprecation&msg=Looking up Modules is deprecated:s"
).mkString(",")
)

Expand Down Expand Up @@ -124,7 +124,7 @@ lazy val firrtlSettings = Seq(
"-language:implicitConversions",
"-Yrangepos", // required by SemanticDB compiler plugin
"-Xsource:3",
"-Xsource-features:infer-override",
"-Xsource-features:infer-override"
),
// Always target Java8 for maximum compatibility
javacOptions ++= Seq("-source", "1.8", "-target", "1.8"),
Expand All @@ -134,7 +134,7 @@ lazy val firrtlSettings = Seq(
"org.scalatestplus" %% "scalacheck-1-18" % "3.2.19.0" % "test",
"com.github.scopt" %% "scopt" % "4.1.0",
"org.json4s" %% "json4s-native" % "4.0.7",
"org.apache.commons" % "commons-text" % "1.12.0",
"org.apache.commons" % "commons-text" % "1.13.0",
"io.github.alexarchambault" %% "data-class" % "0.2.6",
"com.lihaoyi" %% "os-lib" % "0.10.0"
),
Expand Down Expand Up @@ -316,7 +316,7 @@ lazy val core = (project in file("core"))
"-unchecked",
"-Xcheckinit",
"-Xlint:infer-any",
"-Xsource:3",
"-Xsource:3"
// , "-Xlint:missing-interpolator"
)
)
Expand All @@ -342,7 +342,7 @@ lazy val chisel = (project in file("."))
.settings(
// Suppress Scala 3 behavior requiring explicit types on implicit definitions
// Note this must come before the -Wconf is warningSuppression
Test / scalacOptions += "-Wconf:cat=other-implicit-type:s",
Test / scalacOptions += "-Wconf:cat=other-implicit-type:s"
)
.settings(warningSuppression: _*)
.settings(fatalWarningsSettings: _*)
Expand Down
2 changes: 1 addition & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ object v extends Module {
val scalacheck = ivy"org.scalatestplus::scalacheck-1-18:3.2.19.0"
val json4s = ivy"org.json4s::json4s-native:4.0.7"
val dataclass = ivy"io.github.alexarchambault::data-class:0.2.6"
val commonText = ivy"org.apache.commons:commons-text:1.12.0"
val commonText = ivy"org.apache.commons:commons-text:1.13.0"
val scopt = ivy"com.github.scopt::scopt:4.1.0"

def scalaReflect(scalaVersion: String) = ivy"org.scala-lang:scala-reflect:$scalaVersion"
Expand Down

0 comments on commit 37b5013

Please sign in to comment.