From 7449447508002a9aed932716d6fbf315d2482f42 Mon Sep 17 00:00:00 2001 From: Chua Chee Seng Date: Thu, 1 Feb 2024 14:57:09 +0800 Subject: [PATCH] Updated to use scalatest 3.2.18, release version 3.2.18.0. --- README.md | 6 +++--- build.sbt | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 866cebe..b7e9e03 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,12 @@ ScalaTest + ScalaCheck provides integration support between ScalaTest and ScalaC **Usage** -To use it for ScalaTest 3.2.17 and ScalaCheck 1.17.x: +To use it for ScalaTest 3.2.18 and ScalaCheck 1.17.x: SBT: ``` -libraryDependencies += "org.scalatestplus" %% "scalacheck-1-17" % "3.2.17.0" % "test" +libraryDependencies += "org.scalatestplus" %% "scalacheck-1-17" % "3.2.18.0" % "test" ``` Maven: @@ -17,7 +17,7 @@ Maven: org.scalatestplus scalacheck-1-17_2.13 - 3.2.17.0 + 3.2.18.0 test ``` diff --git a/build.sbt b/build.sbt index aa3e436..b58e278 100644 --- a/build.sbt +++ b/build.sbt @@ -49,7 +49,7 @@ def docTask(docDir: File, resDir: File, projectName: String): File = { val sharedSettings = Seq( name := "scalacheck-1.17", organization := "org.scalatestplus", - version := "3.3.0.0-alpha.1", + version := "3.2.18.0", homepage := Some(url("https://github.com/scalatest/scalatestplus-scalacheck")), licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")), developers := List( @@ -68,11 +68,11 @@ val sharedSettings = Seq( ), resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots", libraryDependencies ++= Seq( - "org.scalatest" %%% "scalatest-core" % "3.3.0-alpha.1", + "org.scalatest" %%% "scalatest-core" % "3.2.18", "org.scalacheck" %%% "scalacheck" % "1.17.0", - "org.scalatest" %%% "scalatest-shouldmatchers" % "3.3.0-alpha.1" % "test", - "org.scalatest" %%% "scalatest-funspec" % "3.3.0-alpha.1" % "test", - "org.scalatest" %%% "scalatest-funsuite" % "3.3.0-alpha.1" % "test" + "org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.18" % "test", + "org.scalatest" %%% "scalatest-funspec" % "3.2.18" % "test", + "org.scalatest" %%% "scalatest-funsuite" % "3.2.18" % "test" ), // skip dependency elements with a scope pomPostProcess := { (node: XmlNode) =>