From 1d16c37f6f4649067b16e8816486d5dbc989147c Mon Sep 17 00:00:00 2001
From: Scala Steward <scala_steward@virtuslab.com>
Date: Mon, 20 Jan 2025 16:58:57 +0000
Subject: [PATCH] Update commons-text to 1.13.0

---
 build.mill |  2 +-
 build.sbt  | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/build.mill b/build.mill
index a8552b501e9..08d7a4fcdb0 100644
--- a/build.mill
+++ b/build.mill
@@ -64,7 +64,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"
diff --git a/build.sbt b/build.sbt
index 8d3f72e5ff7..73ef00228e8 100644
--- a/build.sbt
+++ b/build.sbt
@@ -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(",")
 )
 
@@ -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"),
@@ -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"
   ),
@@ -316,7 +316,7 @@ lazy val core = (project in file("core"))
       "-unchecked",
       "-Xcheckinit",
       "-Xlint:infer-any",
-      "-Xsource:3",
+      "-Xsource:3"
 //      , "-Xlint:missing-interpolator"
     )
   )
@@ -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: _*)