v3.0.0
Only the compose module has been changed like following:
- all
<function>Mapped(...)functions have been removed - they are no longer needed as the a replaced with<function>(...)function overloads with amapperparameter. - all functions with an
applyparameter have been removed - if you need them use the overloads with themapperparameter instead, those are more flexible as they also allow you to convert the data type. lifecyclefunctions have been moved fromandroidMaintocommonMain- they are now available for all platforms
The reason why I made a changing break update is mostly the last point - moving lifecycle functions to commonMain breaks the compatibility with previous versions. So I also made the clean up of removing the mapped functions and apply parameters while I was at it.