1
Fork 0
framed-rs/doc/release.md
2019-04-13 17:01:58 +01:00

932 B

Release process

framed crate

  1. Push changes to GitHub.

  2. Check build locally with bin/build_local.

  3. Check Travis build: Build Status

  4. Increment version number in Cargo.toml (major version if breaking changes).

  5. cargo update to update framed version in Cargo.lock.

  6. Commit to update the version number.

  7. Add a git tag for the new version number and push it to GitHub:

    git tag vX.Y.Z && git push --tags

  8. Publish with bin/publish_lib.

  9. Check new version appears on Crate and Documentation