<@U54CM9PGS> did you get any feedback on the 5.9 s...
# kotest-contributors
e
@Oliver.O did you get any feedback on the 5.9 snapshots? I think it'd be nice to publish 5.9.0 soon 🙂
o
No feedback so far. Which is probably neutral (no one tried) or a good sign (nothing to complain). However, I still have a test with one of my projects on my list. I like the idea of publishing 5.9.0 soon. 🚀 Would it be sufficient for that if I report back by tomorrow night?
e
No rush, just let me know when you had the chance to try it out 🙂
👍 1
I'll test some projects with it as well.. but I don't have anything that does very exotic stuff
s
We can always release and fix forward 🙂
👍 1
e
I tried snapshot build w/ a multiplatform project and a bigger regular jvm backend project, no issues.
o
Completed my homework: Tested Kotest
5.9.0.1444-SNAPSHOT
with a Multiplatform JVM/JS project on Kotlin 2.0.0-RC1 and 2.0.0-RC2, no issues. The
io.kotest.multiplatform
Gradle plugin (
io.kotest:kotest-framework-multiplatform-plugin-gradle
) is not published to the snapshot repo, right? Is this intentional?
e
I noticed the same thing. I guess the gradle plugin publishing doesn’t include a snapshot for publishing configuration?
a
If you want some more feedback, I used
5.9.0.1440-SNAPSHOT
on Kotlin 1.9.23 in my mordant and clikt libraries to add wasm support, and I didn't run into any issues.
❤️ 1
e
I got two small PRs up, could someone give them a look before I start the release? 🙂
o
Done!
gratitude thank you 1
Regarding the missing Gradle plugin in snapshots, I've added https://github.com/kotest/kotest/issues/4012. @Emil Kantis Do you think the suggestion there is safe to try?
Any difference between
publish
and
publishPlugins
?
o
I was under the impression that since
publishPlugins
is part of the "plugin portal" group, it is a different beast for the Gradle plugin repo. In contrast,
publish
is just the ordinary task which publishes the artifact (in this case, our plugin) to wherever the other publications go. Like, when I do
publishToMavenLocal
, the Gradle plugin gets published as well. But that's just my guess, and I find the Gradle docs on publishing overwhelming (as usual with anything Gradle).