Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 481 Bytes

CONTRIBUTING.md

File metadata and controls

31 lines (21 loc) · 481 Bytes

Contributing guide

Setup

In order to execute development tasks, you need to install cargo-make.

Lint

cargo make lint

Format

cargo make format

Release

  1. Update CHANGELOG.md and bump version.
  2. Push the changes to the main branch.
  3. Create and push a GIT tag from latest main branch:
git tag v0.1.0
git push upstream v0.1.0

Note

Change v0.1.0 to the new version number.