2020-04-06 14:06:48 +02:00
All commits should have one of the following prefixes: REL, FIX, ADD, TST, OPS, DOC. For example `"ADD: new feature"` .
2020-06-17 12:21:20 +02:00
Adding new feature is ADD, fixing a bug is FIX, something related to infrastructure is OPS etc.
2020-04-06 14:06:48 +02:00
Commits should be atomic: one commit - one feature, one commit - one bugfix etc.
When you tag a new release, use the following example:
`git tag -m "REL v1.4.0: 157c9c2" v1.4.0`
You may get the commit hash from git log. Don't forget to push tags `git push origin --tags`
2020-06-17 12:21:20 +02:00
When tagging a new release, make sure to increment version in package.json and other files (we have a script for that: `./scripts/edit-version-number.sh` )
2020-04-06 14:06:48 +02:00
In the commit where you up version you can have the commit message as
`"REL vX.X.X: Summary message"` .
2020-06-17 12:21:20 +02:00
Do *not* add new dependencies. Bonus points if you manage to actually remove a dependency.