Upgrading Koin 3.5.3
-> 3.5.4
removes dep on kotlin-test
#1848
Labels
Milestone
3.5.3
-> 3.5.4
removes dep on kotlin-test
#1848
PR #1802 removes
kotlin-test
as a transitive dependency.It is a good change, but also a breaking change which should probably be saved for a major version bump (or minor), not added in a patch release.
This is will break anyone that was relying on
kotlin-test
at compile or runtime (which they shouldn't have been doing in the first place, but https://xkcd.com/1172/ )The solution is to add something like
testImplementation("org.jetbrains.kotlin:kotlin-test:$kotlinVersion")
Mostly just opening this for documentation purposes, feel free to close it.
The text was updated successfully, but these errors were encountered: