Skip to content

Commit 4cfe2a2

Browse files
committed
Update README and prepare next version
1 parent 4eaccb5 commit 4cfe2a2

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

README.md

Lines changed: 12 additions & 12 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.5.0.0"
22+
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.5.1.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.5.0.0")
34+
classpath("de.mannodermaus.gradle.plugins:android-junit5:1.5.1.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.5.0"
55-
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.5.0"
54+
testImplementation "org.junit.jupiter:junit-jupiter-api:5.5.1"
55+
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.5.1"
5656
5757
// (Optional) If you need "Parameterized Tests"
58-
testImplementation "org.junit.jupiter:junit-jupiter-params:5.5.0"
58+
testImplementation "org.junit.jupiter:junit-jupiter-params:5.5.1"
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.5.0"
62+
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.5.1"
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.5.0")
78-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.5.0")
77+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.5.1")
78+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.5.1")
7979

8080
// (Optional) If you need "Parameterized Tests"
81-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.5.0")
81+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.5.1")
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.5.0")
85+
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.5.1")
8686
}
8787
```
8888
</details>
@@ -130,7 +130,7 @@ To start writing instrumentation tests with JUnit Jupiter, make the following ch
130130
dependencies {
131131
// 5) Jupiter API & Test Runner, if you don't have it already
132132
androidTestImplementation "androidx.test:runner:1.1.1"
133-
androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.5.0"
133+
androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.5.1"
134134
135135
// 6) The instrumentation test companion libraries
136136
androidTestImplementation "de.mannodermaus.junit5:android-test-core:1.1.0"
@@ -165,7 +165,7 @@ To start writing instrumentation tests with JUnit Jupiter, make the following ch
165165
dependencies {
166166
// 5) Jupiter API & Test Runner, if you don't have it already
167167
androidTestImplementation("androidx.test:runner:1.1.1")
168-
androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.5.0")
168+
androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.5.1")
169169
170170
// 6) The instrumentation test companion libraries
171171
androidTestImplementation("de.mannodermaus.junit5:android-test-core:1.1.0")

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.5.1.0",
38+
currentVersion = "1.5.1.1-SNAPSHOT",
3939
latestStableVersion = "1.5.0.0",
4040
license = license,
4141
description = "Unit Testing with JUnit 5 for Android."

0 commit comments

Comments
 (0)