From deb8ac7c71a66a81cc86583c5c2e5109964305f9 Mon Sep 17 00:00:00 2001 From: Chua Chee Seng Date: Tue, 25 Jun 2024 09:28:26 +0800 Subject: [PATCH] Updated to ScalaTest 3.2.19. --- README.md | 8 ++++---- build.sbt | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index a49b98d..513fc69 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.18 and ScalaCheck 1.18.x: +To use it for ScalaTest 3.2.19 and ScalaCheck 1.18.x: SBT: ``` -libraryDependencies += "org.scalatestplus" %% "scalacheck-1-18" % "3.2.18.0" % "test" +libraryDependencies += "org.scalatestplus" %% "scalacheck-1-18" % "3.2.19.0" % "test" ``` Maven: @@ -16,8 +16,8 @@ Maven: ``` org.scalatestplus - scalacheck-1-18_2.13 - 3.2.18.0 + scalacheck-1-18_3 + 3.2.19.0 test ``` diff --git a/build.sbt b/build.sbt index 0671db3..5e86211 100644 --- a/build.sbt +++ b/build.sbt @@ -4,7 +4,7 @@ import scala.xml.transform.{RewriteRule, RuleTransformer} import java.io.PrintWriter import scala.io.Source -val defaultScalaVersion = "2.13.12" +val defaultScalaVersion = "2.13.13" scalaVersion := defaultScalaVersion @@ -49,7 +49,7 @@ def docTask(docDir: File, resDir: File, projectName: String): File = { val sharedSettings = Seq( name := "scalacheck-1.18", organization := "org.scalatestplus", - version := "3.2.18.0", + version := "3.2.19.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,7 +68,7 @@ val sharedSettings = Seq( ), resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots", libraryDependencies ++= Seq( - "org.scalatest" %%% "scalatest-core" % "3.2.18", + "org.scalatest" %%% "scalatest-core" % "3.2.19", "org.scalacheck" %%% "scalacheck" % "1.18.0", "org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.18" % "test", "org.scalatest" %%% "scalatest-funspec" % "3.2.18" % "test", @@ -140,7 +140,7 @@ lazy val scalatestPlusScalaCheck = .enablePlugins(SbtOsgi) .settings(osgiSettings: _*).settings( scalaVersion := defaultScalaVersion, - crossScalaVersions := List("2.12.17", defaultScalaVersion, "3.3.1"), + crossScalaVersions := List("2.12.19", defaultScalaVersion, "3.3.3"), OsgiKeys.exportPackage := Seq( "org.scalatestplus.scalacheck.*" ),