Skip to content

Commit

Permalink
added release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
kellyselden committed Jul 13, 2016
1 parent 56c236c commit 7ca8fca
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
11 changes: 7 additions & 4 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,15 @@ git merge vX.Y.0-beta.N
* generate changelog
* if on master branch
* run `./dev/changelog`
* if this is a hotfix
* run `./dev/changelog <branch-name>`
* if this is a beta
* run `./dev/changelog beta`
* prepend changelog output to `CHANGELOG.md`
* edit changelog output to be as user-friendly as possible (drop [INTERNAL] changes, non-code changes, etc.)
* replace any "ember-cli" user references in the changelog to whomever made the change
* bump `package.json` version
* don't commit these changes until later
* `./dev/prepare-release`
* the `du` command should give you ballbark 344K as of 2.2.0-beta.5
* run `./dev/prepare-release`
* the `du` command should give you ballbark 200K as of 2.7.0-beta.6

### Test

Expand Down Expand Up @@ -165,6 +165,9 @@ ember serve
* run `./dev/add-to-output-repos.sh`
* if beta release
* run `./dev/add-to-output-repos.sh beta`
* copy the [`ember new` diff] and [`ember addon` diff] lines from the previous
release changelog and paste into the current, then update the url with the
newer tags

### Publish

Expand Down
4 changes: 2 additions & 2 deletions dev/prepare-release
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ npm cache clear && \
npm i --no-optional && \
npm link --no-optional && \
npm pack && \
du -sh ./ember-cli-*.tgz && \
npm uninstall -g ember-cli && \
npm i -g ./ember-cli-*.tgz
npm i -g ./ember-cli-*.tgz && \
du -sh ./ember-cli-*.tgz

0 comments on commit 7ca8fca

Please sign in to comment.