Hello! I just updated my project from 5.5.5 to 5.6...
# kotest
c
Hello! I just updated my project from 5.5.5 to 5.6.1. I was previously using the withConstantNow method from v5.5.5/kotest-extensions/src/jvmMain/kotlin/io/kotest/extensions/time/ConstantNowExtensions.kt. I see that it was moved here: v5.6.1/kotest-extensions/kotest-extensions-now/src/jvmMain/kotlin/io/kotest/extensions/time/ConstantNowExtensions.kt. I cannot seem to access it from the external libraries in Gradle. Is there a separate dependency I need to add in order to access this? Thanks!
Gradle is fully up to date as well.
e
It was moved to a new module
I'm updating the changelog and release notes to clarify this
Copy code
* Moved `withConstantNow` to a new module named `io.kotest:kotest-extensions-now` (remember to add -jvm suffix for Maven)
  * Add this module as a dependency to keep using `withConstantNow`
c
Thank you!