1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2026-01-03 23:22:30 +03:00
Files
matrix-js-sdk/RELEASING.md
Richard van der Hoff e7ac80cf2b Script to do releases
2016-03-16 23:12:38 +00:00

522 B

There is a script release.sh which does the following, but if you need to do a release manually, here are the steps:

  • git checkout -b release-v0.x.x
  • Update CHANGELOG.md
  • npm version 0.x.x
  • Merge release-v0.x.x onto master.
  • Push master.
  • Push the tag: git push --tags
  • npm publish
  • Generate documentation: npm run gendoc (this outputs HTML to .jsdoc)
  • Copy the documentation from .jsdoc to the gh-pages branch and update index.html
  • Merge master onto develop.
  • Push develop.