Skip to content

Commit bddf332

Browse files
committed
Prepare 1.3.2.0
1 parent 61a1166 commit bddf332

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Furthermore, this repository provides a small showcase of the functionality prov
1919
```groovy
2020
buildscript {
2121
dependencies {
22-
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.3.1.1"
22+
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.3.2.0"
2323
}
2424
}
2525
```
@@ -31,7 +31,7 @@ Furthermore, this repository provides a small showcase of the functionality prov
3131
```kotlin
3232
buildscript {
3333
dependencies {
34-
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.3.1.1")
34+
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.3.2.0")
3535
}
3636
}
3737
```
@@ -51,15 +51,15 @@ Snapshots of the development version are available through [Sonatype's `snapshot
5151
5252
dependencies {
5353
// (Required) Writing and executing Unit Tests on the JUnit Platform
54-
testImplementation "org.junit.jupiter:junit-jupiter-api:5.3.1"
55-
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.1"
54+
testImplementation "org.junit.jupiter:junit-jupiter-api:5.3.2"
55+
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.2"
5656
5757
// (Optional) If you need "Parameterized Tests"
58-
testImplementation "org.junit.jupiter:junit-jupiter-params:5.3.1"
58+
testImplementation "org.junit.jupiter:junit-jupiter-params:5.3.2"
5959
6060
// (Optional) If you also have JUnit 4-based tests
6161
testImplementation "junit:junit:4.12"
62-
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.3.1"
62+
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.3.2"
6363
}
6464
```
6565
</details>
@@ -74,15 +74,15 @@ Snapshots of the development version are available through [Sonatype's `snapshot
7474

7575
dependencies {
7676
// (Required) Writing and executing Unit Tests on the JUnit Platform
77-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.3.1")
78-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.3.1")
77+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.3.2")
78+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.3.2")
7979

8080
// (Optional) If you need "Parameterized Tests"
81-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.3.1")
81+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.3.2")
8282

8383
// (Optional) If you also have JUnit 4-based tests
8484
testImplementation("junit:junit:4.12")
85-
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.3.1")
85+
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.3.2")
8686
}
8787
```
8888
</details>
@@ -117,12 +117,12 @@ To start writing instrumentation tests with JUnit Jupiter, add the following to
117117
}
118118
dependencies {
119119
// (Required) Writing tests for JUnit Jupiter
120-
androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.3.1"
120+
androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.3.2"
121121
// (Required) The instrumentation test companion library
122122
androidTestImplementation "de.mannodermaus.junit5:android-instrumentation-test:0.2.2"
123123
124124
// (Required) Runtime dependencies to orchestrate the execution on-device
125-
androidTestRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.1"
125+
androidTestRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.2"
126126
androidTestRuntimeOnly "org.junit.platform:junit-platform-runner:1.3.1"
127127
androidTestRuntimeOnly "de.mannodermaus.junit5:android-instrumentation-test-runner:0.2.2"
128128
}
@@ -143,12 +143,12 @@ To start writing instrumentation tests with JUnit Jupiter, add the following to
143143
}
144144
dependencies {
145145
// (Required) Writing tests for JUnit Jupiter
146-
androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.3.1")
146+
androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.3.2")
147147
// (Required) The instrumentation test companion library
148148
androidTestImplementation("de.mannodermaus.junit5:android-instrumentation-test:0.2.2")
149149
150150
// (Required) Runtime dependencies to orchestrate the execution on-device
151-
androidTestRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.3.1")
151+
androidTestRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.3.2")
152152
androidTestRuntimeOnly("org.junit.platform:junit-platform-runner:1.3.1")
153153
androidTestRuntimeOnly("de.mannodermaus.junit5:android-instrumentation-test-runner:0.2.2")
154154
}

buildSrc/src/main/kotlin/Artifacts.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ object Artifacts {
3535
platform = Java,
3636
groupId = "de.mannodermaus.gradle.plugins",
3737
artifactId = "android-junit5",
38-
currentVersion = "1.3.2.0-SNAPSHOT",
38+
currentVersion = "1.3.2.0",
3939
latestStableVersion = "1.3.2.0-SNAPSHOT",
4040
license = license,
4141
description = "Unit Testing with JUnit 5 for Android."

0 commit comments

Comments
 (0)