Skip to content

Commit deb8ac7

Browse files
committed
Updated to ScalaTest 3.2.19.
1 parent b212ade commit deb8ac7

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@ ScalaTest + ScalaCheck provides integration support between ScalaTest and ScalaC
33

44
**Usage**
55

6-
To use it for ScalaTest 3.2.18 and ScalaCheck 1.18.x:
6+
To use it for ScalaTest 3.2.19 and ScalaCheck 1.18.x:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-18" % "3.2.18.0" % "test"
11+
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-18" % "3.2.19.0" % "test"
1212
```
1313

1414
Maven:
1515

1616
```
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
19-
<artifactId>scalacheck-1-18_2.13</artifactId>
20-
<version>3.2.18.0</version>
19+
<artifactId>scalacheck-1-18_3</artifactId>
20+
<version>3.2.19.0</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import scala.xml.transform.{RewriteRule, RuleTransformer}
44
import java.io.PrintWriter
55
import scala.io.Source
66

7-
val defaultScalaVersion = "2.13.12"
7+
val defaultScalaVersion = "2.13.13"
88

99
scalaVersion := defaultScalaVersion
1010

@@ -49,7 +49,7 @@ def docTask(docDir: File, resDir: File, projectName: String): File = {
4949
val sharedSettings = Seq(
5050
name := "scalacheck-1.18",
5151
organization := "org.scalatestplus",
52-
version := "3.2.18.0",
52+
version := "3.2.19.0",
5353
homepage := Some(url("https://github.com/scalatest/scalatestplus-scalacheck")),
5454
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
5555
developers := List(
@@ -68,7 +68,7 @@ val sharedSettings = Seq(
6868
),
6969
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
7070
libraryDependencies ++= Seq(
71-
"org.scalatest" %%% "scalatest-core" % "3.2.18",
71+
"org.scalatest" %%% "scalatest-core" % "3.2.19",
7272
"org.scalacheck" %%% "scalacheck" % "1.18.0",
7373
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.18" % "test",
7474
"org.scalatest" %%% "scalatest-funspec" % "3.2.18" % "test",
@@ -140,7 +140,7 @@ lazy val scalatestPlusScalaCheck =
140140
.enablePlugins(SbtOsgi)
141141
.settings(osgiSettings: _*).settings(
142142
scalaVersion := defaultScalaVersion,
143-
crossScalaVersions := List("2.12.17", defaultScalaVersion, "3.3.1"),
143+
crossScalaVersions := List("2.12.19", defaultScalaVersion, "3.3.3"),
144144
OsgiKeys.exportPackage := Seq(
145145
"org.scalatestplus.scalacheck.*"
146146
),

0 commit comments

Comments
 (0)