Skip to content

Commit 889e955

Browse files
committed
Switched version to 3.2.16.0.
1 parent e86ab83 commit 889e955

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ To use it for ScalaTest 3.2.16 and JUnit 5.9:
88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "junit-5-9" % "3.2.16.0-M7" % Test
11+
libraryDependencies += "org.scalatestplus" %% "junit-5-9" % "3.2.16.0" % Test
1212
```
1313

1414
Maven:
@@ -17,7 +17,7 @@ Maven:
1717
<dependency>
1818
<groupId>org.scalatestplus</groupId>
1919
<artifactId>junit-5-9_2.13</artifactId>
20-
<version>3.2.16.0-M7</version>
20+
<version>3.2.16.0</version>
2121
<scope>test</scope>
2222
</dependency>
2323
```
@@ -31,7 +31,7 @@ dependencies {
3131
testImplementation "org.scalatest:scalatest_2.13:3.2.16"
3232
testImplementation "org.junit.platform:junit-platform-launcher:1.9.1"
3333
testRuntimeOnly "org.junit.platform:junit-platform-engine:1.9.1"
34-
testRuntimeOnly "org.scalatestplus:junit-5-9_2.13:3.2.16.0-M7"
34+
testRuntimeOnly "org.scalatestplus:junit-5-9_2.13:3.2.16.0"
3535
}
3636
3737
test {
@@ -53,7 +53,7 @@ dependencies {
5353
testImplementation("org.scalatest:scalatest_2.13:3.2.16")
5454
testRuntimeOnly("org.junit.platform:junit-platform-engine:1.9.1")
5555
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.9.1")
56-
testRuntimeOnly("org.scalatestplus:junit-5-9_2.13:3.2.16.0-M7")
56+
testRuntimeOnly("org.scalatestplus:junit-5-9_2.13:3.2.16.0")
5757
}
5858
5959
tasks {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name := "junit-5.9"
55

66
organization := "org.scalatestplus"
77

8-
version := "3.2.16.0-M7"
8+
version := "3.2.16.0"
99

1010
homepage := Some(url("https://github.com/scalatest/scalatestplus-junit"))
1111

examples/gradle-example/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies {
1212
testImplementation "org.scalatest:scalatest_2.12:3.2.16"
1313
testImplementation "org.junit.platform:junit-platform-launcher:1.9.1"
1414
testRuntimeOnly "org.junit.platform:junit-platform-engine:1.9.1"
15-
testRuntimeOnly "org.scalatestplus:junit-5-9_2.12:3.2.16.0-M7"
15+
testRuntimeOnly "org.scalatestplus:junit-5-9_2.12:3.2.16.0"
1616
}
1717

1818
test {

examples/gradle-kotlin-dsl-example/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies {
1414
testImplementation("org.scalatest:scalatest_2.12:3.2.16")
1515
testRuntimeOnly("org.junit.platform:junit-platform-engine:1.9.1")
1616
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.9.1")
17-
testRuntimeOnly("org.scalatestplus:junit-5-9_2.12:3.2.16.0-M7")
17+
testRuntimeOnly("org.scalatestplus:junit-5-9_2.12:3.2.16.0")
1818
}
1919

2020
tasks {

examples/maven-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
<dependency>
6565
<groupId>org.scalatestplus</groupId>
6666
<artifactId>junit-5-9_${scala.compat.version}</artifactId>
67-
<version>${scalatest.version}.0-M7</version>
67+
<version>${scalatest.version}.0</version>
6868
<scope>test</scope>
6969
</dependency>
7070
</dependencies>

0 commit comments

Comments
 (0)