Skip to content

Commit e11ef58

Browse files
committed
Bumped up versions for ScalaTest 3.2.17.
1 parent 7de0597 commit e11ef58

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

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

44
**Usage**
55

6-
To use it for ScalaTest 3.2.16 and ScalaCheck 1.17.x:
6+
To use it for ScalaTest 3.2.17 and ScalaCheck 1.17.x:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-17" % "3.2.16.0" % "test"
11+
libraryDependencies += "org.scalatestplus" %% "scalacheck-1-17" % "3.2.17.0" % "test"
1212
```
1313

1414
Maven:
@@ -17,7 +17,7 @@ Maven:
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
1919
<artifactId>scalacheck-1-17_2.13</artifactId>
20-
<version>3.2.16.0</version>
20+
<version>3.2.17.0</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```

build.sbt

Lines changed: 6 additions & 6 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.10"
7+
val defaultScalaVersion = "2.13.11"
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.17",
5151
organization := "org.scalatestplus",
52-
version := "3.2.16.0",
52+
version := "3.2.17.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,11 +68,11 @@ 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.16",
71+
"org.scalatest" %%% "scalatest-core" % "3.2.17",
7272
"org.scalacheck" %%% "scalacheck" % "1.17.0",
73-
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.16" % "test",
74-
"org.scalatest" %%% "scalatest-funspec" % "3.2.16" % "test",
75-
"org.scalatest" %%% "scalatest-funsuite" % "3.2.16" % "test"
73+
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.17" % "test",
74+
"org.scalatest" %%% "scalatest-funspec" % "3.2.17" % "test",
75+
"org.scalatest" %%% "scalatest-funsuite" % "3.2.17" % "test"
7676
),
7777
// skip dependency elements with a scope
7878
pomPostProcess := { (node: XmlNode) =>

0 commit comments

Comments
 (0)