X Tutup
Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 831 Bytes

File metadata and controls

16 lines (13 loc) · 831 Bytes

You will need the following:

  • Contributor access to elm-explorations/test

How to publish a release:

  1. Check out the master branch and make sure it is up-to-date.
  2. Run npx elm diff and make sure the version change is what you expect.
  3. Run npx elm bump (updating the version number in ./elm.json).
  4. Update ./tests/elm.json and ./package.json to use the new version number.
  5. Update ./CHANGELOG.md to add notes about the new version.
  6. Make sure the tests pass: npm install && npm run test
  7. Commit the changes to ./elm.json, ./tests/elm.json, ./package.json and ./CHANGELOG.md.
  8. Run npx elm publish -- it should fail complaining that the version is not tagged.
  9. Tag and push the release using the git commands that elm publish suggested.
  10. Run npx elm publish to publish the release.
X Tutup