Skip to content
This repository has been archived by the owner on Oct 13, 2022. It is now read-only.

Latest commit

 

History

History
27 lines (23 loc) · 708 Bytes

RELEASE-LIST.md

File metadata and controls

27 lines (23 loc) · 708 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. if there are changes, git commit -a -m "Updated payloads."
  13. Check the pkg tarball.
  14. git flow release finish "$VERSION"
  15. git push --all
  16. git push --tags

Upload!