Skip to content

Commit

Permalink
Bumped up versions for ScalaTest 3.2.17.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed Sep 7, 2023
1 parent 7de0597 commit e11ef58
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ ScalaTest + ScalaCheck provides integration support between ScalaTest and ScalaC

**Usage**

To use it for ScalaTest 3.2.16 and ScalaCheck 1.17.x:
To use it for ScalaTest 3.2.17 and ScalaCheck 1.17.x:

SBT:

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

Maven:
Expand All @@ -17,7 +17,7 @@ Maven:
<dependency>
<groupId>org.scalatestplus</groupId>
<artifactId>scalacheck-1-17_2.13</artifactId>
<version>3.2.16.0</version>
<version>3.2.17.0</version>
<scope>test</scope>
</dependency>
```
Expand Down
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import scala.xml.transform.{RewriteRule, RuleTransformer}
import java.io.PrintWriter
import scala.io.Source

val defaultScalaVersion = "2.13.10"
val defaultScalaVersion = "2.13.11"

scalaVersion := defaultScalaVersion

Expand Down Expand Up @@ -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.2.16.0",
version := "3.2.17.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(
Expand All @@ -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.2.16",
"org.scalatest" %%% "scalatest-core" % "3.2.17",
"org.scalacheck" %%% "scalacheck" % "1.17.0",
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.16" % "test",
"org.scalatest" %%% "scalatest-funspec" % "3.2.16" % "test",
"org.scalatest" %%% "scalatest-funsuite" % "3.2.16" % "test"
"org.scalatest" %%% "scalatest-shouldmatchers" % "3.2.17" % "test",
"org.scalatest" %%% "scalatest-funspec" % "3.2.17" % "test",
"org.scalatest" %%% "scalatest-funsuite" % "3.2.17" % "test"
),
// skip dependency elements with a scope
pomPostProcess := { (node: XmlNode) =>
Expand Down

0 comments on commit e11ef58

Please sign in to comment.