Kotest 6.0.0.M5 is out. <https://github.com/kotest...
# kotest
e
Kotest 6.0.0.M5 is out. https://github.com/kotest/kotest/releases/tag/v6.0.0.M5 This also marks our first release to the new Maven Central. If you notice any artifacts missing or other oddities related to publications feel free to ping me directly.
kotest intensifies 8
🎉 4
s
I get this error when updating:
Copy code
Plugin [id: 'io.kotest.multiplatform', version: '6.0.0.M5'] was not found
https://plugins.gradle.org/plugin/io.kotest.multiplatform
e
I think you’re meant to switch to just io.kotest and add KSP
a
add this to migration guide?
e
@Simon Frost if you're doing multiplatform testing, you probably also need to add a dependency to
io.kotest:kotest-framework-symbol-processor:6.0.0.M5
@Alex Kuznetsov yup, it's there 🙂 (now w/ the dependency mentioned as well)
kotest intensifies 1
@Simon Frost seems the dependency needs to be added to the respective
ksp<TARGET>Test
configuration. For instance:
Copy code
dependencies {
   add("kspLinuxX64Test", "io.kotest:kotest-framework-symbol-processor:6.0.0.M5")
//   add("kspMingwX64Test", libs.kotest.framework.symbol.processor) // or using gradle version catalog
//   add("kspMacosX64Test", libs.kotest.framework.symbol.processor)
//   add("kspIosX64Test", libs.kotest.framework.symbol.processor)
}