We’re using Kotlin serialization `0.20.0`. Until n...
# eap
r
We’re using Kotlin serialization
0.20.0
. Until now there has always been a preview build, e.g.
0.20.0-1.4-M3
. With the RC there’s only
1.0-M1-1.4.0-rc
. I’d just like to confirm whether this is intentional and if Kotlin Serialization will reach 1.0 with the final 1.4 release? We’d like to avoid milestone releases in production.
It basically means we can’t test the RC in CI, because the serialization library isn’t backwards compatible.
s
It's more likely it will have version 1.0-M1 with 1.4-release and get 1.0 in a week or two later. 0.20.0 is missing intentionally, since versions like
0.20.0-1.4-M3
were released from
dev
branch anyway and were incompatible with regular 0.20.0, so we decided to emphasise that
r
That makes sense. Thanks for clarifying.