From a2b055589b012e1d2279c07adc2b17e270b7ade1 Mon Sep 17 00:00:00 2001 From: ragnar Date: Sat, 14 Sep 2024 23:02:52 +0200 Subject: [PATCH] dependency updates --- .scalafmt.conf | 2 +- project/Dependencies.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.scalafmt.conf b/.scalafmt.conf index 55a6e5df6..80e2e80da 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -49,7 +49,7 @@ fileOverride { runner.dialect = sbt1 } // project files are sbt projects, sbt always uses scala 2.12 - "glob:**/project/*.scala" { + "glob:/project/*.scala" { runner.dialect = scala212 } } diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 0ea70ec8c..4cb669f3f 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -8,7 +8,7 @@ import sbt.Keys.libraryDependencies object Dependencies { def jsoup = libraryDependencies += "org.jsoup" % "jsoup" % "1.18.1" - def munit = libraryDependencies += "org.scalameta" %%% "munit" % "1.0.1" % Test + def munit = libraryDependencies += "org.scalameta" %%% "munit" % "1.0.2" % Test def munitCheck = libraryDependencies += "org.scalameta" %%% "munit-scalacheck" % "1.0.0" % Test def pprint = libraryDependencies += "com.lihaoyi" %%% "pprint" % "0.9.0" def quicklens = libraryDependencies += "com.softwaremill.quicklens" %%% "quicklens" % "1.9.0"