1.24.0-1.21.4
Small release containing one bug fix!
But I also updated Kore to 2.1.0, this changes the process of creating projects because you have to ignore one warning, sadly that's the best way I found for the current state of Kore.
We're waiting on the context parameters feature to release to remove these flags, but currently the KEEP is still in construction.
You'll now have to add this flag to freeCompilerArgs list :
"-Xsuppress-warning=CONTEXT_RECEIVERS_DEPRECATED"
Example
kotlin {
compilerOptions {
freeCompilerArgs = listOf("-Xcontext-receivers", "-Xsuppress-warning=CONTEXT_RECEIVERS_DEPRECATED")
}
}Note that I've also updated Kore-Template.
Changelog
chore(build): Update compiler arguments for context receivers. 192f9c1chore(dependencies): Updatejetbrains-composeto version 1.7.3, updatekobwebto version 0.20.0, and upgradekotlin.versionto 2.1.0. 18f75fb a33baf6fix(scoreboard): UpdateasStringmethod to usecamelCase, add tests for some scoreboard criterion. #135 c6ed581feat(string-utils): AddcamelCasefunction to convert strings to camel case. f033e3b
Full changelog: https://github.com/Ayfri/Kore/compare/v1.23.0-1.21.4..v1.24.0-1.21.4