From 162646c969dbc056cca6a72ddef871177f82146b Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 9 May 2024 14:31:37 +0000 Subject: [PATCH] Update scalacheck to 1.17.1 --- documentation/build.sbt | 4 ++-- json-schema/build.sbt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/documentation/build.sbt b/documentation/build.sbt index caf01cd6e..b6a8104b4 100644 --- a/documentation/build.sbt +++ b/documentation/build.sbt @@ -330,7 +330,7 @@ val `example-cqrs-commands` = noPublishSettings, `scala 2.12 to 2.13`, libraryDependencies ++= Seq( - "org.scalacheck" %% "scalacheck" % "1.17.0" % Test, + "org.scalacheck" %% "scalacheck" % "1.17.1" % Test, "org.http4s" %% "http4s-blaze-server" % http4sVersion % Test, "org.http4s" %% "http4s-async-http-client" % http4sVersion % Test, "org.typelevel" %% "cats-effect-testing-scalatest" % "1.5.0" % Test, @@ -372,7 +372,7 @@ val `example-cqrs` = "org.http4s" %% "http4s-blaze-server" % http4sVersion, "org.http4s" %% "http4s-async-http-client" % http4sVersion, "org.typelevel" %% "cats-effect-testing-scalatest" % "1.5.0" % Test, - "org.scalacheck" %% "scalacheck" % "1.17.0" % Test, + "org.scalacheck" %% "scalacheck" % "1.17.1" % Test, scalaTestDependency ) ) diff --git a/json-schema/build.sbt b/json-schema/build.sbt index 5feaba659..c543d22f7 100644 --- a/json-schema/build.sbt +++ b/json-schema/build.sbt @@ -12,7 +12,7 @@ val `json-schema` = name := "algebra-json-schema", libraryDependencies ++= Seq( "org.scala-lang.modules" %%% "scala-collection-compat" % "2.7.0", - "org.scalacheck" %%% "scalacheck" % "1.17.0" % Test, + "org.scalacheck" %%% "scalacheck" % "1.17.1" % Test, scalaTestDependency ), (Compile / boilerplateSource) := baseDirectory.value / ".." / "src" / "main" / "boilerplate"