Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build-logic/src/main/kotlin/Environment.kt
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ object Artifacts {
*/
object Instrumentation {
const val groupId = "de.mannodermaus.junit5"
private const val currentVersion = "1.8.1-SNAPSHOT"
private const val currentVersion = "1.9.0-SNAPSHOT"
private const val latestStableVersion = "1.8.0"

val Core = Deployed(
Expand Down
2 changes: 2 additions & 0 deletions instrumentation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ Change Log

## Unreleased

- Adjust constructor of `ModifiedTestPlan` to conform to newly added interface from JUnit 5.14 (#390)

## 1.8.0 (2025-06-11)

- Compile with SDK 35
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ internal class AndroidJUnitPlatformTestTree(
TestPlan(
/* containsTests = */ delegate.containsTests(),
/* configurationParameters = */ delegate.configurationParameters,
/* outputDirectoryProvider = */ delegate.outputDirectoryProvider
/* outputDirectoryCreator = */ delegate.outputDirectoryCreator
) {

fun getRealParent(child: TestIdentifier?): Optional<TestIdentifier> {
Expand Down