Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 2.02 KB

CONTRIBUTING.md

File metadata and controls

60 lines (40 loc) · 2.02 KB

CONTRIBUTING

WORKFLOW

  1. Create and describe your proposal/bug in an issue.
  2. Create a new branch AND pull request with the pattern 1-my-feature.

Deploy Features First in Testnet

Untitled


CONVENTIONAL COMMIT

type(escope): short description

What does the modification do?
why was it modified?

type

  • deprecated! compatibility break
  • add adds a new feature
  • fix fixes a bug
  • remove remove a peace of code
  • update does not add a feature or fix a bug

SEMANTIC VERSION

Major.Minor.Patch (e.g. 1.3.4)

  • deprecated! -> Major
  • add -> Minor
  • update | fix -> Patch

READTHEDOCS