Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 644 Bytes

RELEASE-LIST.md

File metadata and controls

26 lines (22 loc) · 644 Bytes

Release Checklist

This assumes that you are creating a release for an instance of Fedora Connector installed in its normal place in the Omeka plugins directory.

  1. export VERSION=42.0.13
  2. git flow release start $VERSION
  3. Update versions
    • plugin.ini
    • package.json
    • bower.json
  4. git commit -a -m "Set version number to $VERSION."
  5. npm install
  6. bower install
  7. PATH=$PATH:./node_modules/bin/
  8. curl -sS https://getcomposer.org/installer | php
  9. php composer.phar install
  10. grunt
  11. grunt compress
  12. Check the pkg tarball.
  13. git flow release finish "$VERSION"
  14. git push --all
  15. git push --tags

Upload!