Manuals and Standards¶
RFC 2119¶
Refer to: RFC 2119.
RFC 2119 specifies keywords that are used to help in the interpretation of requirements:
- MUST / REQUIRED / SHALL
- MUST NOT / SHALL NOT
- SHOULD / RECOMMENDED
- SHOULD NOT / NOT RECOMMENDED
- MAY / OPTIONAL
Licensing¶
Refer to: Choose a License / Creative Commons / Open Source Initiative.
Semantic Versioning¶
Refer to: Semantic Versioning.
Given a version number MAJOR.MINOR.PATCH
, increment the:
MAJOR
version when you make incompatible API changes.MINOR
version when you add functionality in a backward compatible manner.PATCH
version when you make backward compatible bug fixes.
Conventional Commits¶
Refer to: Conventional Commits / Angular Convention.
Structure of the commit message:
fix
: correlates withPATCH
in SemVer.feat
: correlates withMINOR
in SemVer.BREAKING CHANGE
: a commit that has a footerBREAKING CHANGE
, or appends a!
after the type/scope, correlating withMAJOR
in SemVer.<type>
:build
,chore
,ci
,docs
,style
,refactor
,perf
,test
, etc.<description>
:- use the imperative, present tense: "change" not "changed" nor "changes".
- don't capitalize the first letter.
- no dot (
.
) at the end.
Example:
Last update:
2023-11-05
Created: 2023-11-05
Created: 2023-11-05