## Migration guide from 0.60.0 to 0.61.0 - `MSG` is now an associated type to `Application` - `Cmd` should now be just `Cmd` old: ```rust impl Application for App{ fn update(&mut self, msg: Msg) -> Cmd { ... } } ``` new: ```rust impl Application for App { type MSG = Msg; fn update(&mut self, msg: Msg) -> Cmd{ ... } } ```