Skip to content

Commit

Permalink
Update scalacheck to 1.18.1
Browse files Browse the repository at this point in the history
  • Loading branch information
47erbot authored Oct 18, 2024
1 parent 739b178 commit 626543e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ lazy val `scalacheck-toolbox-datetime`: ProjectMatrix =
.settings(description := "A library for helping use date and time libraries with ScalaCheck")
.settings(
libraryDependencies ++= Seq(
"org.scalacheck" %%% "scalacheck" % "1.18.0",
"org.scalacheck" %%% "scalacheck" % "1.18.1",
"org.scala-lang.modules" %%% "scala-collection-compat" % "2.12.0"
),
scalacOptions --= Seq("-Werror", "-Xfatal-warnings")
Expand All @@ -65,14 +65,14 @@ lazy val `scalacheck-toolbox-magic`: ProjectMatrix =
(projectMatrix in file("modules/scalacheck-toolbox-magic"))
.enablePlugins(BigListOfNaughtyStringsPlugin)
.settings(description := "ScalaCheck Generators for magic values")
.settings(libraryDependencies += "org.scalacheck" %%% "scalacheck" % "1.18.0")
.settings(libraryDependencies += "org.scalacheck" %%% "scalacheck" % "1.18.1")
.settings(scalacOptions --= Seq("-Werror", "-Xfatal-warnings"))
.jvmPlatform(scalaVersions = allScalaVersions)

lazy val `scalacheck-toolbox-combinators`: ProjectMatrix =
(projectMatrix in file("modules/scalacheck-toolbox-combinators"))
.settings(description := "Useful generic combinators for ScalaCheck")
.settings(libraryDependencies += "org.scalacheck" %%% "scalacheck" % "1.18.0")
.settings(libraryDependencies += "org.scalacheck" %%% "scalacheck" % "1.18.1")
.settings(scalacOptions --= Seq("-Werror", "-Xfatal-warnings"))
.jvmPlatform(scalaVersions = allScalaVersions)
.jsPlatform(scalaVersions = allScalaVersions)

0 comments on commit 626543e

Please sign in to comment.