feat(version): Change rules for major version zero
Find the bump version based on the conventional commit types.
- `fix` type commits are translated to PATCH releases.
- `feat` type commits are translated to MINOR releases.
- Commits with `BREAKING CHANGE` in the commits, regardless of type, are translated to MAJOR releases.
If the project is in major version zero (0.y.z) the rules are:
- `fix` type commits are translated to PATCH releases.
- `feat` type commits are translated to PATCH releases.
- Commits with `BREAKING CHANGE` in the commits, regardless of type, are translated to MINOR releases.