Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 682 Bytes

RELEASING.md

File metadata and controls

27 lines (21 loc) · 682 Bytes

Releasing many-rs

This document provides instructions on how to release a new version on many-rs.

  1. Clean your repository from dirty files.
    # Dry-run. Respects .gitignore.
    $ git clean -fdn
    
    # Remove the files
    $ git clean -fd
  2. 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.