-
Notifications
You must be signed in to change notification settings - Fork 20
How to release a new version
-
Update GitHub issue tracker for release.
- Create a milestone in GitHub for the next version. Bump any open tickets to the next version. Mark the current release milestone as closed.
-
git checkout master && git pull origin master
-
git checkout 1.x && git pull origin:1.x
-
git merge master
-
grunt release
orgrunt release --minor
- Updates the
package.json
andbower.json
using semver. This will build thedist
folder and update version numbers within markdown files. Visually check thatdist
file banners have the new version and commit.
- Updates the
-
git add dist && git add *.md && git add *.json && git commit -m 'release x.x.x'
-
Upload contents of
dist
folder to Fuel CDN server via FTP. -
git tag -a x.x.x -m 'vx.x.x' && git push origin x.x.x
- The tagged commit should be in the release branch only. Create and publish tag.
-
Write release notes (see below).
-
Update Marketing Cloud Theme documentation found in Fuel UX's
gh-pages
branch. -
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)
(#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]
(anything special that needs to be called out)