Repository: cordova-coho Updated Branches: refs/heads/master 31ff1c647 -> 028b3642e
added compat plugin support and updated plugins release process Project: http://git-wip-us.apache.org/repos/asf/cordova-coho/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-coho/commit/028b3642 Tree: http://git-wip-us.apache.org/repos/asf/cordova-coho/tree/028b3642 Diff: http://git-wip-us.apache.org/repos/asf/cordova-coho/diff/028b3642 Branch: refs/heads/master Commit: 028b3642e077638329728e9a8da3e62ee833186f Parents: 31ff1c6 Author: Steve Gill <[email protected]> Authored: Fri Apr 15 14:01:56 2016 -0700 Committer: Steve Gill <[email protected]> Committed: Fri Apr 15 14:01:56 2016 -0700 ---------------------------------------------------------------------- docs/plugins-release-process.md | 4 +++- src/repoutil.js | 6 ++++++ 2 files changed, 9 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-coho/blob/028b3642/docs/plugins-release-process.md ---------------------------------------------------------------------- diff --git a/docs/plugins-release-process.md b/docs/plugins-release-process.md index b920cd7..cd08837 100644 --- a/docs/plugins-release-process.md +++ b/docs/plugins-release-process.md @@ -132,6 +132,8 @@ Reply to the DISCUSS thread with a link to the updated release notes. for l in $ACTIVE; do ( cd $l; v="$(grep version= plugin.xml | grep -v xml | head -n1 | cut -d'"' -f2)"; b=`expr $v : '^\(....\)'`; x="x"; b=$b$x; git branch $b; echo "Creating branch $b for $l"); done +If a branch already exists, you will have to manually checkout the branch, merge master and then checkout master. + ## Update version to add back -dev suffix for l in $ACTIVE; do ( cd $l; v="$(grep version= plugin.xml | grep -v xml | head -n1 | cut -d'"' -f2)"; v_no_dev="${v%-dev}"; if [ "$v" = "$v_no_dev" ]; then v2="$(echo $v|awk -F"." '{$NF+=1}{print $0RT}' OFS="." ORS="")-dev"; echo "$l: Setting version in plugin.xml to $v2"; sed -i '' -E s:"version=\"$v\":version=\"$v2\":" plugin.xml; fi) ; done @@ -202,7 +204,7 @@ __Body:__ The packages were published from their corresponding git tags: PASTE OUTPUT OF: coho print-tags -r ${ACTIVE// / -r } - Upon a successful vote I will upload the archives to dist/, upload them to the Plugins Registry, and post the corresponding blog post. + Upon a successful vote I will upload the archives to dist/, upload them to npm, and post the corresponding blog post. Voting guidelines: https://github.com/apache/cordova-coho/blob/master/docs/release-voting.md http://git-wip-us.apache.org/repos/asf/cordova-coho/blob/028b3642/src/repoutil.js ---------------------------------------------------------------------- diff --git a/src/repoutil.js b/src/repoutil.js index 72cb7dd..7d1c244 100644 --- a/src/repoutil.js +++ b/src/repoutil.js @@ -174,6 +174,12 @@ var pluginRepos = [ jiraComponentName: 'Plugin Contacts', inactive: true }, { + title: 'Plugin - Compat', + id: 'plugin-compat', + repoName: 'cordova-plugin-compat', + jiraComponentName: 'Plugin Compat', + inactive: true + }, { title: 'Plugin - Device Motion', id: 'plugin-device-motion', repoName: 'cordova-plugin-device-motion', --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
