diff --git a/README.md b/README.md index 88413cf6..5948432c 100644 --- a/README.md +++ b/README.md @@ -22,20 +22,20 @@ To get started, declare the plugin in your `app` module's build script alongside ```kotlin plugins { - id("de.mannodermaus.android-junit5") version "1.9.2.0" + id("de.mannodermaus.android-junit5") version "1.9.3.0" } dependencies { // (Required) Writing and executing Unit Tests on the JUnit Platform - testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.2") - testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.2") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.3") + testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.3") // (Optional) If you need "Parameterized Tests" - testImplementation("org.junit.jupiter:junit-jupiter-params:5.9.2") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.9.3") // (Optional) If you also have JUnit 4-based tests testImplementation("junit:junit:4.13.2") - testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.9.2") + testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.9.3") } ``` @@ -45,20 +45,20 @@ To get started, declare the plugin in your `app` module's build script alongside ```groovy plugins { - id "de.mannodermaus.android-junit5" version "1.9.2.0" + id "de.mannodermaus.android-junit5" version "1.9.3.0" } dependencies { // (Required) Writing and executing Unit Tests on the JUnit Platform - testImplementation "org.junit.jupiter:junit-jupiter-api:5.9.2" - testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.2" + testImplementation "org.junit.jupiter:junit-jupiter-api:5.9.3" + testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.3" // (Optional) If you need "Parameterized Tests" - testImplementation "org.junit.jupiter:junit-jupiter-params:5.9.2" + testImplementation "org.junit.jupiter:junit-jupiter-params:5.9.3" // (Optional) If you also have JUnit 4-based tests testImplementation "junit:junit:4.13.2" - testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.9.2" + testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.9.3" } ``` @@ -75,7 +75,7 @@ If you prefer to use the legacy way to declare the dependency instead, remove th ```kotlin buildscript { dependencies { - classpath("de.mannodermaus.gradle.plugins:android-junit5:1.9.2.0") + classpath("de.mannodermaus.gradle.plugins:android-junit5:1.9.3.0") } } ``` @@ -87,7 +87,7 @@ If you prefer to use the legacy way to declare the dependency instead, remove th ```kotlin buildscript { dependencies { - classpath "de.mannodermaus.gradle.plugins:android-junit5:1.9.2.0" + classpath "de.mannodermaus.gradle.plugins:android-junit5:1.9.3.0" } } ``` @@ -114,7 +114,7 @@ Before you can write instrumentation tests with JUnit Jupiter, make sure that yo ```kotlin dependencies { - androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.9.2") + androidTestImplementation("org.junit.jupiter:junit-jupiter-api:5.9.3") } ``` @@ -124,7 +124,7 @@ Before you can write instrumentation tests with JUnit Jupiter, make sure that yo ```groovy dependencies { - androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.9.2" + androidTestImplementation "org.junit.jupiter:junit-jupiter-api:5.9.3" } ``` diff --git a/build-logic/src/main/kotlin/Environment.kt b/build-logic/src/main/kotlin/Environment.kt index 053871c9..f5ac1a8e 100644 --- a/build-logic/src/main/kotlin/Environment.kt +++ b/build-logic/src/main/kotlin/Environment.kt @@ -87,7 +87,7 @@ object Artifacts { platform = Java, groupId = "de.mannodermaus.gradle.plugins", artifactId = "android-junit5", - currentVersion = "1.9.3.0-SNAPSHOT", + currentVersion = "1.9.3.0", latestStableVersion = "1.9.2.0", license = license, description = "Unit Testing with JUnit 5 for Android." diff --git a/plugin/CHANGELOG.md b/plugin/CHANGELOG.md index ec0b20ff..142d736b 100644 --- a/plugin/CHANGELOG.md +++ b/plugin/CHANGELOG.md @@ -2,6 +2,8 @@ Change Log ========== ## Unreleased + +## 1.9.3.0 (2023-04-29) - JUnit 5.9.3 ## 1.9.2.0 (2023-04-29)