Skip to content

Commit 1f67f0f

Browse files
committed
Plugin 2.0.0
1 parent 71e3bef commit 1f67f0f

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

build-logic/src/main/kotlin/Environment.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ object Artifacts {
106106
platform = Java,
107107
groupId = "de.mannodermaus.gradle.plugins",
108108
artifactId = "android-junit5",
109-
currentVersion = "2.0.0-SNAPSHOT",
109+
currentVersion = "2.0.0",
110110
latestStableVersion = "1.14.0.0",
111111
description = "Unit Testing with the JUnit Framework for Android."
112112
)
@@ -116,8 +116,8 @@ object Artifacts {
116116
*/
117117
object Instrumentation {
118118
const val groupId = "de.mannodermaus.junit5"
119-
private const val currentVersion = "2.0.0"
120-
private const val latestStableVersion = "1.9.0"
119+
private const val currentVersion = "2.0.1-SNAPSHOT"
120+
private const val latestStableVersion = "2.0.0"
121121

122122
val Core = Deployed(
123123
platform = Android(minSdk = 19),

instrumentation/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ Change Log
33

44
## Unreleased
55

6+
## 2.0.0 (2025-12-31)
7+
68
- Removed deprecated `runComposeTest` API from `ComposeExtension`
79
- Update to Kotlin 2.3
810
- Update to Compose 1.10

plugin/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ Change Log
22
==========
33

44
## Unreleased
5+
6+
## 2.0.0 (2025-12-31)
57
- Update to Kotlin 2.3
68
- Internal: Replace deprecated `OutputDirectoryProvider` with its correct replacement
79
- Support instrumentation with JUnit 5 and 6 (the plugin will choose the correct runtime accordingly)

plugin/android-junit5/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ kotlin { explicitApi() }
3939
gradlePlugin {
4040
plugins {
4141
register("plugin") {
42+
id = "de.mannodermaus.android-junit"
43+
implementationClass = "de.mannodermaus.gradle.plugins.junit5.AndroidJUnitPlatformPlugin"
44+
}
45+
46+
// Old plugin ID
47+
register("plugin2") {
4248
id = "de.mannodermaus.android-junit5"
4349
implementationClass = "de.mannodermaus.gradle.plugins.junit5.AndroidJUnitPlatformPlugin"
4450
}

0 commit comments

Comments
 (0)