This document provides instructions on how to release a new version on many-rs
.
- Clean your repository from dirty files.
# Dry-run. Respects .gitignore. $ git clean -fdn # Remove the files $ git clean -fd
- Create the new release
# Replace [VERSION] with a semver-compatible version $ ./release v[VERSION] # Review the changes # Push the new master $ git push # Push the tags $ git push --tags
The process will automatically update the CHANGELOG.md
file with the latest changes.
Pushing the tag will create a new release on the GitHub release page.