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

How to release a new version

Stephen James edited this page Apr 22, 2015 · 45 revisions

[optional] Update dependencies to latest version and test build process:

##How to release

  1. Write release notes (see below). github_changelog_generator --no-author --unreleased-only --compare-link

  2. Update GitHub issue tracker for release. Use clear, obvious language for pull request titles. Modify if necessary.

    • Create a milestone in GitHub for the next version.
    • Bump any open tickets to the next version.
    • Mark the current release milestone as closed.
  3. git checkout master && git pull origin master && git checkout 1.x && git pull origin 1.x && git merge master && grunt release (or --minor)

    • Checkout master
    • Pull master branch from origin
    • Checkout 1.x (stable branch)
    • Pull 1.x branch from origin
    • Merge local master into local 1.x
    • Updates the package.json, bower.json, and markdown files with the version. This will build the dist folder.
  4. git add dist && git add *.md && git add *.json && git commit -m 'release x.x.x'

    • Check dist files visually to make sure comment banners have correct release version listed, and that *.min files are minified as expected.
  5. git add dist README.md DETAILS.md bower.json package.json && git commit -m 'release x.x.x' && git tag -a x.x.x -m 'vx.x.x'

    • Add modified release files.
    • Commit with version number
    • Add version tag
  6. Push to origin git push origin 1.x.

  7. git push origin x.x.x && git push origin 1.x:master && git checkout master && git pull origin master

    • Publish tag to Github. The tag commit should exist in the major.x branch.
    • Push 1.x to master if nothing new has been merged in
    • Return to starting place locally
  8. Upload contents of dist folder to Fuel CDN server via SFTP: mv dist x.x.x && scp -i ~/.ssh/fuelcdn -r x.x.x/ [user@domain]:/[id]/fuelux-mctheme/

  9. Update Marketing Cloud Theme documentation found in Fuel UX's gh-pages branch.

  10. Announce

  • Tweet via @FuelUX account

##Release Notes Write Github release notes for the tag, using this template:

  • Pull Requests within milestone
    • https://github.com/exacttarget/fuelux-mctheme/issues?q=milestone:x.x.x+is:pr

(and anything important about this release)

New Features and improvements

(#ticketnumber and a human-readable description of the pull request, usually the pull request title. If the ticket title doesn't make sense, either edit the ticket directly, or provide an alternative title here. Be sure to include the name of the controls modified at the end in brackets.)

#700 - deselected and selected events added [tree] 

Bug Fixes

Upgrade Notes

(anything special that needs to be called out)

Clone this wiki locally