You will need the following:
- Contributor access to
elm-explorations/test
How to publish a release:
- Check out the
masterbranch and make sure it is up-to-date. - Run
npx elm diffand make sure the version change is what you expect. - Run
npx elm bump(updating the version number in./elm.json). - Update
./tests/elm.jsonand./package.jsonto use the new version number. - Update
./CHANGELOG.mdto add notes about the new version. - Make sure the tests pass:
npm install && npm run test - Commit the changes to
./elm.json,./tests/elm.json,./package.jsonand./CHANGELOG.md. - Run
npx elm publish-- it should fail complaining that the version is not tagged. - Tag and push the release using the git commands that elm publish suggested.
- Run
npx elm publishto publish the release.