Dear Wiki user, You have subscribed to a wiki page or wiki category on "Cordova Wiki" for change notification.
The "StepsForPluginRelease" page has been changed by AndrewGrieve: https://wiki.apache.org/cordova/StepsForPluginRelease?action=diff&rev1=3&rev2=4 == Update Changelog & Version == * For each plugin that has unreleased commits: a. Update its CHANGELOG.md file with changes - a. Increase the plugin's version within plugin.xml using `SemVer`, and remove the ''-dev'' suffix. + a. Increase the plugin's version within plugin.xml using `SemVer` (deduce the semantic effect on version), and remove the ''-dev'' suffix. a. Commit these two changes together to the `dev` branch {{{ @@ -47, +47 @@ == Update dev branch's version == * For each plugin that had unreleased commits: + * Rationale: So that the version on dev is greater than the version on master. {{{ git checkout dev # Edit version within plugin.xml by incrementing the micro and adding the ''-dev'' suffix. @@ -55, +56 @@ == Test == * Create mobilespec using the old versions of plugins + * TODO: How do you do this? Using plugman-registry probably? * Perform a "plugin upgrade" for plugins that have changes * Right now, this means doing a `plugin remove` followed by a `plugin add` * Run through mobilespec, ensuring to do manual tests that relate to changes in the changelog
